Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 179 for conf3 (0.08 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/GraphVariantSelector.java

            }
    
            validateVariantAttributes(conf, consumerAttributes, targetComponentState, consumerSchema);
            maybeEmitConsumptionDeprecation(conf);
            return conf;
        }
    
        /**
         * Select the variant that is identified by the given configuration name.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  2. cmd/warm-backend-gcs.go

    	}
    	return false, nil
    }
    
    func newWarmBackendGCS(conf madmin.TierGCS, tier string) (*warmBackendGCS, error) {
    	// Validation code
    	if conf.Creds == "" {
    		return nil, errors.New("empty credentials unsupported")
    	}
    
    	if conf.Bucket == "" {
    		return nil, errors.New("no bucket name was provided")
    	}
    
    	credsJSON, err := conf.GetCredentialJSON()
    	if err != nil {
    		return nil, err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 21 11:43:18 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/issues_test.go

    		t.Fatal("expected syntax error")
    	}
    
    	var conf Config
    	conf.Check(f.PkgName.Value, []*syntax.File{f}, nil) // must not panic
    }
    
    func TestIssue61938(t *testing.T) {
    	const src = `
    package p
    
    func f[T any]() {}
    func _()        { f() }
    `
    	// no error handler provided (this issue)
    	var conf Config
    	typecheck(src, &conf, nil) // must not panic
    
    	// with error handler (sanity check)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/DefaultMutableIvyModuleResolveMetadataTest.groovy

        }
    
        def exclude(String group, String module, String... confs) {
            def exclude = new DefaultExclude(DefaultModuleIdentifier.newId(group, module), confs, "whatever")
            return exclude
        }
    
        def artifact(String name, String... confs) {
            def artifact = new Artifact(new DefaultIvyArtifactName(name, "type", "ext", "classifier"), confs as Set<String>)
            return artifact
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. src/go/types/check_test.go

    }
    
    // boolFieldAddr(conf, name) returns the address of the boolean field conf.<name>.
    // For accessing unexported fields.
    func boolFieldAddr(conf *Config, name string) *bool {
    	v := reflect.Indirect(reflect.ValueOf(conf))
    	return (*bool)(v.FieldByName(name).Addr().UnsafePointer())
    }
    
    // stringFieldAddr(conf, name) returns the address of the string field conf.<name>.
    // For accessing unexported fields.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. pkg/kube/inject/inject_test.go

    		},
    		{
    			name: "flat-single",
    			in:   "macvlan-conf-1",
    			want: "macvlan-conf-1, istio-cni",
    		},
    		{
    			name: "flat-multiple",
    			in:   "macvlan-conf-1, macvlan-conf-2",
    			want: "macvlan-conf-1, macvlan-conf-2, istio-cni",
    		},
    		{
    			name: "json-single",
    			in:   `[{"name": "macvlan-conf-1"}]`,
    			want: `[{"name": "macvlan-conf-1"}, {"name": "istio-cni"}]`,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  7. cni/pkg/install/testdata/bridge.conf.golden

    Ben Leggett <******@****.***> 1716316321 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 716 bytes
    - Viewed (0)
  8. cni/pkg/install/testdata/istio-cni.conf

    Ben Leggett <******@****.***> 1716316321 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 319 bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/check.go

    	// mutate *pkg.
    	//
    	// (previously, pkg.goVersion was mutated here: go.dev/issue/61212)
    
    	return &Checker{
    		conf:    conf,
    		ctxt:    conf.Context,
    		pkg:     pkg,
    		Info:    info,
    		version: asGoVersion(conf.GoVersion),
    		objMap:  make(map[Object]*declInfo),
    		impMap:  make(map[importKey]*Package),
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  10. .github/workflows/go.yml

              MINIO_KMS_SECRET_KEY: "my-minio-key:OSMM+vkKUTCvQs9YL/CVMIMt43HFhkUpqJxTmGl6rYw="
              MINIO_KMS_AUTO_ENCRYPTION: on
            run: |
              sudo sysctl net.ipv6.conf.all.disable_ipv6=0
              sudo sysctl net.ipv6.conf.default.disable_ipv6=0
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top