Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,115 for creat (0.45 sec)

  1. pilot/pkg/features/experimental.go

    			"that ENABLE_MCS_SERVICE_DISCOVERY also be enabled.").Get() &&
    		EnableMCSServiceDiscovery
    
    	EnableMCSClusterLocal = env.Register(
    		"ENABLE_MCS_CLUSTER_LOCAL",
    		false,
    		"If enabled, istiod will treat the host "+
    			"`<svc>.<namespace>.svc.cluster.local` as defined by the "+
    			"Kubernetes Multi-Cluster Services (MCS) spec. In this mode, "+
    			"requests to `cluster.local` will be routed to only those "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/ImmutableMultisetTest.java

        Multiset<String> c = HashMultiset.create();
        Multiset<String> multiset = ImmutableMultiset.copyOf(c);
        assertTrue(multiset.isEmpty());
      }
    
      public void testCopyOf_multiset_oneElement() {
        Multiset<String> c = HashMultiset.create(asList("a"));
        Multiset<String> multiset = ImmutableMultiset.copyOf(c);
        assertEquals(HashMultiset.create(asList("a")), multiset);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 25K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/hash/BloomFilterTest.java

        new EqualsTester()
            .addEqualityGroup(BloomFilter.create(Funnels.byteArrayFunnel(), 100, 0.01))
            .addEqualityGroup(BloomFilter.create(Funnels.byteArrayFunnel(), 100, 0.02))
            .addEqualityGroup(BloomFilter.create(Funnels.byteArrayFunnel(), 200, 0.01))
            .addEqualityGroup(BloomFilter.create(Funnels.byteArrayFunnel(), 200, 0.02))
            .addEqualityGroup(BloomFilter.create(Funnels.unencodedCharsFunnel(), 100, 0.01))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  4. pkg/controlplane/controller/systemnamespaces/system_namespaces_controller_test.go

    			actions: [][]string{
    				{"create", "namespaces"},
    				{"create", "namespaces"},
    				{"create", "namespaces"},
    				{"create", "namespaces"},
    			},
    		},
    		{
    			name:       "no system namespaces but others",
    			namespaces: []string{"foo", "bar"},
    			actions: [][]string{
    				{"create", "namespaces"},
    				{"create", "namespaces"},
    				{"create", "namespaces"},
    				{"create", "namespaces"},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/Dependencies.java

            return getDependencyFactory().create(getProject().project(projectPath));
        }
    
        /**
         * Returns the current project as a {@link ProjectDependency}.
         *
         * @return the current project as a dependency
         */
        default ProjectDependency project() {
            return getDependencyFactory().create(getProject());
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 05:34:03 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. docs/en/docs/how-to/async-sql-encode-databases.md

    Here, this section would run directly, right before starting your **FastAPI** application.
    
    * Create an `engine`.
    * Create all the tables from the `metadata` object.
    
    ```Python hl_lines="25-28"
    {!../../../docs_src/async_sql_databases/tutorial001.py!}
    ```
    
    ## Create models
    
    Create Pydantic models for:
    
    * Notes to be created (`NoteIn`).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        auto min_scaled =
            rewriter.create<DivOp>(op.getLoc(), float_min, quant_to_float);
        auto min_scaled_sub =
            rewriter.create<SubOp>(op.getLoc(), quant_min, min_scaled);
    
        auto mid_rounded =
            rewriter.create<RoundOp>(op.getLoc(), scalar_ty, min_scaled_sub);
    
        auto nudged_zero_point_val = rewriter.create<ClipByValueOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskBridgingIntegrationTest.groovy

                @Mutate
                void addTasks(ModelMap<Task> tasks) {
                    tasks.create("actionMan", EchoTask) {
                        text = 'This is your commander speaking'
                    }
                    tasks.create("climbTask", ClimbTask) {}
                    tasks.create("jumpTask", JumpTask) {}
                    tasks.create("overruleTask", OverruleTask) {}
                }
            }
            apply type: Rules
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. plugin/pkg/admission/noderestriction/admission_test.go

    		expectError    string
    	}{
    		"create allowed, enabled": {
    			operation:      admission.Create,
    			obj:            sliceNode,
    			featureEnabled: true,
    			expectError:    "",
    		},
    		"create disallowed, enabled": {
    			operation:      admission.Create,
    			obj:            sliceOtherNode,
    			featureEnabled: true,
    			expectError:    err,
    		},
    		"create allowed, disabled": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

            rewriter.create<SubtractOp>(loc, b_max_diag_len, diag_len_d), b_zero);
    
        // x = max(d, 0) - offset
        // y = max(-d, 0) - offset
        Value x = rewriter.create<SubtractOp>(
            loc, rewriter.create<MaxOp>(loc, d, b_zero), offset);
        Value y = rewriter.create<SubtractOp>(
            loc, rewriter.create<MaxOp>(loc, neg_d, b_zero), offset);
    
        Value n_plus_x = rewriter.create<AddOp>(loc, iotaN, x);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top