Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 591 for combinations (0.55 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java

    import org.slf4j.LoggerFactory;
    
    @Singleton
    @Named
    public final class DefaultPluginValidationManager extends AbstractEventSpy implements PluginValidationManager {
        /**
         * The collection of "G:A" combinations that do NOT belong to Maven Core, hence, should be excluded from
         * "expected in provided scope" type of checks.
         */
        static final Collection<String> EXPECTED_PROVIDED_SCOPE_EXCLUSIONS_GA =
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 23 12:25:04 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/ppc64_p10.s

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This contains the valid opcode combinations available
    // in cmd/internal/obj/ppc64/asm9.go which exist for
    // POWER10/ISA 3.1.
    
    #include "../../../../../runtime/textflag.h"
    
    TEXT asmtest(SB), DUPOK|NOSPLIT, $0
    	BRD R1, R2                              // 7c220176
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 23 20:52:57 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  10. pkg/test/framework/resource/flags.go

    	}
    
    	if err = validate(s); err != nil {
    		return nil, err
    	}
    
    	return s, nil
    }
    
    // validate checks that user has not passed invalid flag combinations to test framework.
    func validate(s *Settings) error {
    	if s.FailOnDeprecation && s.NoCleanup {
    		return fmt.Errorf("checking for deprecation occurs at cleanup level, thus flags -istio.test.nocleanup and" +
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top