Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 238 for west (0.04 sec)

  1. tensorflow/compiler/jit/deadness_analysis_test.cc

    #include "tensorflow/core/framework/op.h"
    #include "tensorflow/core/graph/algorithm.h"
    #include "tensorflow/core/graph/graph_def_builder.h"
    #include "tensorflow/core/lib/core/status_test_util.h"
    #include "tensorflow/core/platform/test.h"
    
    namespace tensorflow {
    namespace {
    
    absl::StatusOr<bool> HasInputsWithMismatchingDeadness(
        const DeadnessAnalysis& deadness_analysis, const Node& n) {
      std::optional<DeadnessAnalysis::DeadnessPredicate> pred;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  2. pkg/apis/storage/validation/validation_test.go

    			},
    		},
    	}}
    
    	for _, test := range tests {
    		test.csiDriver.Spec.AttachRequired = new(bool)
    		test.csiDriver.Spec.PodInfoOnMount = new(bool)
    		test.csiDriver.Spec.StorageCapacity = new(bool)
    		test.csiDriver.Spec.SELinuxMount = new(bool)
    		if errs := ValidateCSIDriver(test.csiDriver); test.wantErr != (len(errs) != 0) {
    			t.Errorf("ValidateCSIDriver = %v, want err: %v", errs, test.wantErr)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.api.tasks.testing.Test.getExcludes()> does not have raw return type assignable to org.gradle.api.provider.Property in (Test.java:0)
    Method <org.gradle.api.tasks.testing.Test.getExecutable()> does not have raw return type assignable to org.gradle.api.provider.Property in (Test.java:0)
    Method <org.gradle.api.tasks.testing.Test.getFailFast()> does not have raw return type assignable to org.gradle.api.provider.Property in (Test.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. tests/migrate_test.go

    	}
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    			if err := DB.Migrator().DropTable(table); err != nil {
    				t.Fatalf("failed to drop table, got error: %v", err)
    			}
    			if err := DB.Table(table).AutoMigrate(test.from); err != nil {
    				t.Fatalf("failed to migrate table, got error: %v", err)
    			}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  5. .bazelrc

    w/core/runtime_fallback/kernel,tensorflow/core/runtime_fallback/opdefs,tensorflow/core/runtime_fallback/runtime,tensorflow/core/runtime_fallback/util,tensorflow/core/runtime_fallback/test,tensorflow/core/runtime_fallback/test/gpu,tensorflow/core/runtime_fallback/test/saved_model,tensorflow/core/runtime_fallback/test/testdata,tensorflow/core/tfrt/stubs,tensorflow/core/tfrt/tfrt_session,tensorflow/core/tfrt/mlrt,tensorflow/core/tfrt/mlrt/attribute,tensorflow/core/tfrt/mlrt/kernel,tensorflow/core/t...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. plugin/pkg/admission/limitranger/admission_test.go

    		},
    	}
    	for i := range successCases {
    		test := successCases[i]
    		err := PodMutateLimitFunc(&test.limitRange, &test.pod)
    		if err != nil {
    			t.Errorf("Unexpected error for pod: %s, %v", test.pod.Name, err)
    		}
    		err = PodValidateLimitFunc(&test.limitRange, &test.pod)
    		if err != nil {
    			t.Errorf("Unexpected error for pod: %s, %v", test.pod.Name, err)
    		}
    	}
    
    	errorCases := []testCase{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  7. src/net/http/client_test.go

    	}{
    		// don't send user:
    		{lastReq: "http://gopher@test.com", newReq: "http://link.com", want: "http://test.com"},
    		{lastReq: "https://gopher@test.com", newReq: "https://link.com", want: "https://test.com"},
    
    		// don't send a user and password:
    		{lastReq: "http://gopher:go@test.com", newReq: "http://link.com", want: "http://test.com"},
    		{lastReq: "https://gopher:go@test.com", newReq: "https://link.com", want: "https://test.com"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  8. src/go/build/build.go

    func parseWord(data []byte) (word, rest []byte) {
    	data = skipSpaceOrComment(data)
    
    	// Parse past leading word characters.
    	rest = data
    	for {
    		r, size := utf8.DecodeRune(rest)
    		if unicode.IsLetter(r) || '0' <= r && r <= '9' || r == '_' {
    			rest = rest[size:]
    			continue
    		}
    		break
    	}
    
    	word = data[:len(data)-len(rest)]
    	if len(word) == 0 {
    		return nil, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserTest.groovy

            ""                       | "<scope>test</scope>" | "<version>1.1</version>" | "1.1"           | MavenScope.Test
            "<scope>compile</scope>" | "<scope>test</scope>" | "<version>1.1</version>" | "1.1"           | MavenScope.Test
            "<scope>test</scope>"    | ""                    | "<version>1.1</version>" | "1.1"           | MavenScope.Compile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 75.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    [source,kotlin]
    ----
    tasks.test {
        // lazy configuration
    }
    
    // Lazy reference
    val testProvider: TaskProvider<Test> = tasks.test
    
    testProvider {
        // lazy configuration
    }
    
    // Eagerly realized Test task, defeat configuration avoidance if done out of a lazy context
    val test: Test = tasks.test.get()
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top