Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 266 for CREATE (0.12 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      // Find the operands to change, and create the loads.
      for (auto& entry : arg_data_type_and_updated_output_index) {
        int64_t index = entry.getFirst();
        Type new_type = entry.getSecond().first;
        int64_t updated_index = entry.getSecond().second;
        auto operand = caller->getOperand(index);
        builder.setInsertionPoint(caller);
        new_operands[index] = builder.create<TF::ReadVariableOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/validation_test.go

    				t.Fatal(err)
    			}
    
    			// create CRDs
    			_, err = apiExtensionClient.ApiextensionsV1().CustomResourceDefinitions().Create(context.TODO(), crd, metav1.CreateOptions{})
    			if len(tst.expectedCreateErrors) > 0 && err == nil {
    				t.Fatalf("expected create errors, got none")
    			} else if len(tst.expectedCreateErrors) == 0 && err != nil {
    				t.Fatalf("unexpected create error: %v", err)
    			} else if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 26 20:48:36 UTC 2021
    - 63.6K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

            reportsCompleteAbsenceOfResolvableVariants()
        }
    
        def "if only resolvable configurations present, task reports complete absence"() {
            given:
            buildFile << """
                configurations.create("custom") {
                    description = "My custom configuration"
                    assert canBeResolved
                    canBeConsumed = false
                }
            """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 50K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    You do this by adding an `into()` declaration for just the PDFs:
    
    ====
    include::sample[dir="snippets/files/archivesWithBasePlugin/kotlin",files="build.gradle.kts[tags=create-archive-with-base-plugin-example]"]
    include::sample[dir="snippets/files/archivesWithBasePlugin/groovy",files="build.gradle[tags=create-archive-with-base-plugin-example]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  5. src/os/os_test.go

    	}
    }
    
    func TestSameFile(t *testing.T) {
    	defer chtmpdir(t)()
    	fa, err := Create("a")
    	if err != nil {
    		t.Fatalf("Create(a): %v", err)
    	}
    	fa.Close()
    	fb, err := Create("b")
    	if err != nil {
    		t.Fatalf("Create(b): %v", err)
    	}
    	fb.Close()
    
    	ia1, err := Stat("a")
    	if err != nil {
    		t.Fatalf("Stat(a): %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/SetsTest.java

        suite.addTestSuite(SetsTest.class);
    
        suite.addTest(
            SetTestSuiteBuilder.using(
                    new TestStringSetGenerator() {
                      @Override
                      protected Set<String> create(String[] elements) {
                        return Sets.newConcurrentHashSet(Arrays.asList(elements));
                      }
                    })
                .named("Sets.newConcurrentHashSet")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  7. pkg/controller/replicaset/replica_set_test.go

    		}
    	case <-time.After(wait.ForeverTestTimeout):
    		t.Errorf("Processing DeleteFinalStateUnknown took longer than expected")
    	}
    }
    
    // Tell the rs to create 100 replicas, but simulate a limit (like a quota limit)
    // of 10, and verify that the rs doesn't make 100 create calls per sync pass
    func TestSyncReplicaSetCreateFailures(t *testing.T) {
    	_, ctx := ktesting.NewTestContext(t)
    	fakePodControl := controller.FakePodControl{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		containerLogPath := filepath.Join(opts.PodContainerDir, cid)
    		fs, err := m.osInterface.Create(containerLogPath)
    		if err != nil {
    			utilruntime.HandleError(fmt.Errorf("error on creating termination-log file %q: %v", containerLogPath, err))
    		} else {
    			fs.Close()
    
    			// Chmod is needed because os.Create() ends up calling
    			// open(2) to create the file, so the final mode used is "mode &
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     * as compiling classes, or running unit tests, or zipping up a WAR file. You add tasks to a project using one of the
     * {@code create()} methods on {@link TaskContainer}, such as {@link TaskContainer#create(String)}.  You can locate existing
     * tasks using one of the lookup methods on {@link TaskContainer}, such as {@link org.gradle.api.tasks.TaskCollection#getByName(String)}.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            failure.assertHasCause("Failed to create service 'counter1'.")
            failure.assertHasCause("Could not create an instance of type CountingService.")
            failure.assertHasCause("broken")
            failure.assertHasDescription("Execution failed for task ':second'.")
            failure.assertHasCause("Failed to create service 'counter2'.")
            failure.assertHasCause("Could not create an instance of type CountingService.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
Back to top