Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,723 for createId (0.09 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle/admission_test.go

    	if err != nil {
    		t.Errorf("unexpected error returned from admission handler")
    	}
    }
    
    // TestAdmissionNamespaceTerminating verifies a resource is not created when the namespace is active.
    func TestAdmissionNamespaceTerminating(t *testing.T) {
    	namespace := "test"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // Creates a pass that drops `shape_invariant` attribute from While/WhileRegion
    // ops.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateDropWhileShapeInvariantPass();
    
    // Creates a pass that drops `shape_invariant` attribute from While/WhileRegion
    // ops within device cluster.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateDropWhileShapeInvariantInDeviceClusterPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/DependencyHandlerExtensionsTest.kt

                    )
                }
            }
    
            assertThat(
                events,
                equalTo(listOf("created", "configured", "added"))
            )
        }
    
        @Test
        @Issue("https://github.com/gradle/gradle/issues/16865")
        fun `given string notation, 'create' extension will create and configure dependency`() {
    
            val dependencyHandlerMock = newDependencyHandlerMock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 06:41:25 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  4. platforms/extensibility/test-kit/src/test/groovy/org/gradle/testkit/runner/internal/DefaultGradleRunnerTest.groovy

            }
            Throwable t = thrown(InvalidRunnerConfigurationException)
            t.message == 'Unable to use non-directory as test kit directory: path'
        }
    
        def "throws exception if test kit dir cannot be created"() {
            when:
            createRunner().withProjectDir(workingDir).build()
    
            then:
            1 * testKitDirProvider.getDir() >> {
                Mock(File) {
                    isDirectory() >> false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  5. tests/upsert_test.go

    		t.Errorf("user should be created with search value")
    	}
    
    	DB.FirstOrCreate(&user3, map[string]interface{}{"name": "find or create 2"})
    	if user3.Name != "find or create 2" || user3.ID == 0 {
    		t.Errorf("user should be created with inline search value")
    	}
    
    	DB.Where(&User{Name: "find or create 3"}).Attrs("age", 44).FirstOrCreate(&user4)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Sep 05 07:39:19 UTC 2022
    - 11.4K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/google/SortedMultisetTestSuiteBuilder.java

        return SortedMultisetTestSuiteBuilder.using(
                new ForwardingTestMultisetGenerator<E>(delegate) {
                  @Override
                  public SortedMultiset<E> create(Object... entries) {
                    return ((SortedMultiset<E>) super.create(entries)).descendingMultiset();
                  }
    
                  @Override
                  public Iterable<E> order(List<E> insertionOrder) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.cc

      for (Operation* subgraph_op : llvm::reverse(reverse_subgraph)) {
        // Create a deep copy of the subgraph ops' operands to the func op.
        stablehlo_func_op.getBody().begin()->push_back(subgraph_op->clone(mapper));
      }
    
      SmallVector<Value> result_values;
      for (const Value original_output_value : outputs) {
        // Use the mapped values in the newly created function that correspond to
        // outputs in the original function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21K bytes
    - Viewed (0)
  8. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/DefaultListenerManagerInServiceRegistryTest.groovy

        }
    
        def "automatically creates and registers stateful listener when first event is broadcast"() {
            def created = Mock(Runnable)
            def listener = Mock(TestListener)
    
            when:
            services.addProvider(new ServiceRegistrationProvider() {
                @Provides
                TestListener createListener() {
                    created.run()
                    return listener
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPublication.java

         *       artifact 'my-file-name.jar' // Publish a file created outside of the build
         *       artifact source: sourceJar, classifier: 'src', extension: 'zip'
         *     }
         *   }
         * }
         * </pre>
         *
         * @param source The source of the artifact content.
         */
        MavenArtifact artifact(Object source);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyPublication.java

         */
        IvyArtifact artifact(Object source);
    
        /**
         * Creates an {@link IvyArtifact} to be included in the publication, which is configured by the associated action.
         *
         * The first parameter is used to create a custom artifact and add it to the publication, as per {@link #artifact(Object)}.
         * The created {@link IvyArtifact} is then configured using the supplied action.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12.8K bytes
    - Viewed (0)
Back to top