Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for 12345x (0.2 sec)

  1. doc/README.md

    For example, if the directory `6-stdlib/99-minor` is present,
    then an `api/next` file with the line
    
        pkg net/http, function F #12345
    
    should have a corresponding file named `doc/next/6-stdlib/99-minor/net/http/12345.md`.
    At a minimum, that file should contain either a full sentence or a TODO,
    ideally referring to a person with the responsibility to complete the note.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    			ClusterConfiguration: kubeadmapi.ClusterConfiguration{
    				CertificatesDir:     pkidir,
    				EncryptionAlgorithm: kubeadmapi.EncryptionAlgorithmECDSAP256,
    			},
    			NodeRegistration: kubeadmapi.NodeRegistrationOptions{Name: "valid-node-name"},
    		},
    		{
    			LocalAPIEndpoint: kubeadmapi.APIEndpoint{AdvertiseAddress: "1.2.3.4", BindPort: 1234},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  3. cni/pkg/nodeagent/informers_test.go

    	defer cancel()
    
    	enrolledNotRedirected := &corev1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "enrolled-not-redirected",
    			Namespace: "test",
    			UID:       "12345",
    			Labels:    map[string]string{constants.DataplaneModeLabel: constants.DataplaneModeAmbient},
    		},
    		Spec: corev1.PodSpec{
    			NodeName: NodeName,
    		},
    		Status: corev1.PodStatus{
    			PodIP: "11.1.1.12",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

    // CHECK-LABEL: testDivWithBroadcastToOps
    func.func @testDivWithBroadcastToOps(%arg0: tensor<1x2x1x4x5x6xi32>, %arg1: tensor<1x2x3x4x5x1xi32>) -> tensor<1x2x3x4x5x6xi32> {
      // CHECK: [[CST:%.*]] = arith.constant dense<[1, 2, 3, 4, 5, 6]> : tensor<6xi64>
      // CHECK: [[BCAST:%.*]] = "tfl.broadcast_to"(%arg0, [[CST]])
      // CHECK: [[BCAST_1:%.*]] = "tfl.broadcast_to"(%arg1, [[CST]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  5. pkg/apis/resource/validation/validation_resourceclaimtemplate_test.go

    			template: func() *resource.ResourceClaimTemplate {
    				template := testClaimTemplate(goodName, goodNS, goodClaimSpec)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFeaturesIntegrationTest.groovy

            configurationCacheRun("resolve1")
    
            then:
            configurationCache.assertStateLoaded()
    
            when:
            verificationFile.replace("<sha256 value=\"$checkSum\"", '<sha256 value="12345"')
            configurationCacheFails("resolve1")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 33K bytes
    - Viewed (0)
  7. pkg/apis/resource/validation/validation_resourceclass_test.go

    			class: func() *resource.ResourceClass {
    				class := testClass(goodName, goodName)
    				class.Labels = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt

     * The logical branch.
     * For non-merge-queue branches this is the same as {@link #buildBranch}.
     * For merge-queue branches, this is the base branch.
     *
     * For example, for the merge queue branch "gh-readonly-queue/master/pr-12345-1a2b3c4d" the logical branch is "master".
     */
    val Project.logicalBranch: Provider<String>
        get() = buildBranch.map(::toMergeQueueBaseBranch)
    
    
    val Project.buildCommitId: Provider<String>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_image_test.go

    func TestPullThenListWithAnnotations(t *testing.T) {
    	ctx := context.Background()
    	_, _, fakeManager, err := createTestRuntimeManager()
    	assert.NoError(t, err)
    
    	imageSpec := kubecontainer.ImageSpec{
    		Image: "12345",
    		Annotations: []kubecontainer.Annotation{
    			{Name: "kubernetes.io/runtimehandler", Value: "handler_name"},
    		},
    	}
    
    	_, err = fakeManager.PullImage(ctx, imageSpec, nil, nil)
    	assert.NoError(t, err)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ImmutableListMultimap.java

       *     new ImmutableListMultimap.Builder<String, Integer>()
       *         .put("one", 1)
       *         .putAll("several", 1, 2, 3)
       *         .putAll("many", 1, 2, 3, 4, 5)
       *         .build();
       * }</pre>
       *
       * <p>Builder instances can be reused; it is safe to call {@link #build} multiple times to build
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top