Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,184 for conf1 (0.04 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/AbstractRichVersionConstraintsIntegrationTest.groovy

                dependencies {
                    conf('org:foo:17')
                    conf project(path: 'other', configuration: 'conf')
                }
            """
            file("other/build.gradle") << """
                $repositoryDeclaration
    
                configurations {
                    conf
                }
                dependencies {
                    conf('org:foo') {
                        version {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 15:37:32 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  2. .github/workflows/replication.yaml

              sudo sysctl net.ipv6.conf.default.disable_ipv6=0
              make test-pbac
    
          - name: Test Config File
            run: |
              sudo sysctl net.ipv6.conf.all.disable_ipv6=0
              sudo sysctl net.ipv6.conf.default.disable_ipv6=0
              make test-configfile
    
          - name: Test Replication
            run: |
              sudo sysctl net.ipv6.conf.all.disable_ipv6=0
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/DependencyLockingIntegrationTest.groovy

        }
    }
    configurations {
        conf
        lockEnabledConf {
            extendsFrom conf
            resolutionStrategy.activateDependencyLocking()
        }
    }
    dependencies {
        conf 'org:foo:[1.0,)'
        conf 'org:foo:1.1'
    
        conf 'org:foz:latest.integration'
        conf 'org:foz:1.1'
    
        conf 'org:bar:1.+'
        conf 'org:bar:1.1'
    
        conf 'org:baz:+'
        conf 'org:baz:1.1'
    }
    task check {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 30 12:42:25 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate_registration.cc

      if (!module) return failure();
    
      tensorflow::GraphExportConfig confs;
      confs.export_entry_func_to_flib = export_entry_func_to_flib;
      confs.export_original_tf_func_name = export_original_tf_func_name;
    
      absl::StatusOr<std::unique_ptr<tensorflow::GraphDef>> graphdef_or(
          tensorflow::tf2xla::v2::ConvertMlirToGraphdef(module, confs));
      if (!graphdef_or.status().ok()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. src/net/conf_test.go

    		},
    		{
    			name: "linux_no_nsswitch.conf",
    			c: &conf{
    				goos: "linux",
    			},
    			resolv:    defaultResolvConf,
    			nss:       &nssConf{err: fs.ErrNotExist},
    			hostTests: []nssHostTest{{"google.com", "myhostname", hostLookupFilesDNS}},
    		},
    		{
    			name: "linux_empty_nsswitch.conf",
    			c: &conf{
    				goos: "linux",
    			},
    			resolv:    defaultResolvConf,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:46:36 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. test/fixedbugs/issue9110.go

    		release()
    
    		close(c) // let select put its sudog's into the cache
    		time.Sleep(1 * time.Millisecond)
    
    		// pick up top sudog
    		var cond1 sync.Cond
    		var mu1 sync.Mutex
    		cond1.L = &mu1
    		go func() {
    			mu1.Lock()
    			cond1.Wait()
    			mu1.Unlock()
    		}()
    		time.Sleep(1 * time.Millisecond)
    
    		// pick up next sudog
    		var cond2 sync.Cond
    		var mu2 sync.Mutex
    		cond2.L = &mu2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/override/ComponentOverrideMetadataResolveIntegrationTest.groovy

            'multiple dependency declarations (artifact notation)' | 'bar'        | "conf('org:foo') { artifact { name = 'bar'; type = 'distribution-tgz' } }; conf('org:foo') { artifact { name = 'bar'; type = 'zip' } }"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 03 18:15:26 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. cmd/warm-backend-azure.go

    	case conf.AccountKey == "" && (conf.SPAuth.TenantID == "" || conf.SPAuth.ClientID == "" || conf.SPAuth.ClientSecret == ""):
    		return nil, errors.New("no authentication mechanism was provided")
    	}
    
    	if conf.Bucket == "" {
    		return nil, errors.New("no bucket name was provided")
    	}
    
    	if conf.IsSPEnabled() {
    		credential, err = newCredentialFromSP(conf)
    	} else {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 05 16:44:08 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/PublishedDependencyConstraintsIntegrationTest.groovy

                    dependsOn 'org:first:2.0'
                }
            }
    
            buildFile << """
                dependencies {
                    conf(platform('org:platform:1.0'))
                    conf 'org:first:1.0'
                    conf 'org:second:1.0'
                }
    """
            when:
            repositoryInteractions {
                'org:client:4.1.0' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/AbstractVersionRangeResolveIntegrationTest.groovy

                    configurations { conf }
                }
    
                configurations {
                    ${singleProjectConfs.join('\n')}
                    single {
                        extendsFrom(${singleProjectConfs.join(',')})
                    }
                }
    
                dependencies {
                    conf 'org:foo'
                    conf project(path: ':p1', configuration: 'conf')
                    ${singleProjectDeps.join('\n')}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top