Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 819 for combinations (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile.go

    	}
    }
    
    func mustBuildEnvs(baseEnv *environment.EnvSet) variableDeclEnvs {
    	requestType := BuildRequestType()
    	namespaceType := BuildNamespaceType()
    	envs := make(variableDeclEnvs, 8) // since the number of variable combinations is small, pre-build a environment for each
    	for _, hasParams := range []bool{false, true} {
    		for _, hasAuthorizer := range []bool{false, true} {
    			for _, strictCost := range []bool{false, true} {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_setup.adoc

    [[publishing_overview:how]]
    How to publish::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/gradients_test.cc

        for (int i = 0; i < N; ++i) {
          test::ExpectTensorEqual<int>(in_grad[i], test::AsTensor<int>({i}, {1}));
        }
      }
    }
    
    // StopGradientSingleOutputMultiEdgeTest tests combinations of valid and
    // 'NoGradient' (induced by StopGradient op) returned along multiple edges from
    // a single nodes output.
    class StopGradientSingleOutputMultiEdgeTest : public ::testing::Test {
     protected:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 25K bytes
    - Viewed (0)
  4. src/cmd/cover/cfg_test.go

    		bargs = append(bargs, ofs...)
    		cmd := testenv.Command(t, testenv.GoToolPath(t), bargs...)
    		cmd.Dir = instdira
    		run(cmd, t)
    	}
    
    	// Do some error testing to ensure that various bad options and
    	// combinations are properly rejected.
    
    	// Expect error if config file inaccessible/unreadable.
    	mode := "atomic"
    	errExpected := true
    	tag := "errors"
    	_, _, errmsg := runPkgCover(t, instdira, tag, "/not/a/file", mode,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoryInteractionDependencyResolveIntegrationTest.groovy

                            }
                        }
                    }
                }
            }
    
            where:
            [chain, testVariant] << [REPO_TYPES.permutations(), TEST_VARIANTS.keySet()].combinations()
        }
    
        def "explicit compile configuration selection works for a chain of pure maven dependencies"() {
            given:
            def modules = ['mavenCompile1', 'mavenCompile2', 'mavenCompile3']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentSelectorSerializer.java

            } else if (value instanceof DefaultProjectComponentSelector) {
                DefaultProjectComponentSelector projectComponentSelector = (DefaultProjectComponentSelector) value;
                // Special case some common combinations of names and paths
                boolean isARootProject = projectComponentSelector.projectPath().equals(Path.ROOT);
                if (projectComponentSelector.getIdentityPath().equals(Path.ROOT) && isARootProject) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationRolesIntegrationTest.groovy

                ['canBeResolved = false', 'canBeResolved = false; canBeConsumed = false']
            ].combinations()
        }
    
        def "cannot add a dependency on a configuration role #role"() {
            given:
            createDirs("a", "b")
            file('settings.gradle') << 'include "a", "b"'
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 15:38:24 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/net/http/httpguts/httplex.go

    //
    //	message-header = field-name ":" [ field-value ]
    //	field-value    = *( field-content | LWS )
    //	field-content  = <the OCTETs making up the field-value
    //	                 and consisting of either *TEXT or combinations
    //	                 of token, separators, and quoted-string>
    //
    // http://www.w3.org/Protocols/rfc2616/rfc2616-sec2.html#sec2.2 :
    //
    //	TEXT           = <any OCTET except CTLs,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/cpumanager/cpu_assignment.go

    		})
    
    		// If we made it through all of the iterations above without finding a
    		// combination of NUMA nodes that can properly balance CPU allocations,
    		// then move on to the next larger set of NUMA node combinations.
    		if bestCombo == nil {
    			continue
    		}
    
    		// Otherwise, start allocating CPUs from the NUMA node combination
    		// chosen. First allocate an even distribution of CPUs in groups of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 23:56:21 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/Ascii.java

      /**
       * Shift Out: A control character indicating that the code combinations which follow shall be
       * interpreted as outside of the character set of the standard code table until a Shift In
       * character is reached.
       *
       * @since 8.0
       */
      public static final byte SO = 14;
    
      /**
       * Shift In: A control character indicating that the code combinations which follow shall be
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
Back to top