Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 77 for IsSame (0.07 sec)

  1. pkg/proxy/nftables/proxier.go

    		}
    
    		// internalPolicyChain is the chain containing the endpoints for
    		// "internal" (ClusterIP) traffic. internalTrafficChain is the chain that
    		// internal traffic is routed to (which is always the same as
    		// internalPolicyChain). hasInternalEndpoints is true if we should
    		// generate rules pointing to internalTrafficChain, or false if there are
    		// no available internal endpoints.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

            then:
            succeeds ":compileJava", "--export-keys"
            result.assertNotOutput("A verification file was generated but some problems were discovered")
        }
    
    
        def "doesn't check the same artifact multiple times during a build (terse output=#terse)"() {
            createMetadataFile {
                noMetadataVerification()
                keyServer(keyServerFixture.uri)
                verifySignatures()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  3. pkg/controller/endpointslice/endpointslice_controller_test.go

    					TargetRef: &v1.ObjectReference{Kind: "Pod", Namespace: "default", Name: "pod1"},
    					NodeName:  pointer.String("node-1"),
    				},
    			},
    		},
    		{
    			name: "Ready and Complete pods with same IPs",
    			service: &v1.Service{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "foobar",
    					Namespace:         "default",
    					CreationTimestamp: creationTimestamp,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (MOVDstore [off1] {sym1} (MOVWaddr [off2] {sym2} ptr) val mem) && canMergeSym(sym1,sym2) =>
    	(MOVDstore [off1+off2] {mergeSym(sym1,sym2)} ptr val mem)
    
    // replace load from same location as preceding store with zero/sign extension (or copy in case of full width)
    (MOVBload [off] {sym} ptr (MOVBstore [off2] {sym2} ptr2 x _)) && sym == sym2 && off == off2 && isSamePtr(ptr, ptr2) => (MOVBreg x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  5. src/os/os_test.go

    			t.Fatalf("readdirnames %q returned empty slice and no error", file.Name())
    		}
    		names[count] = d[0]
    		count++
    	}
    	return names[0:count]
    }
    
    // Check that reading a directory one entry at a time gives the same result
    // as reading it all at once.
    func TestReaddirnamesOneAtATime(t *testing.T) {
    	t.Parallel()
    
    	// big directory that doesn't change often.
    	dir := "/usr/bin"
    	switch runtime.GOOS {
    	case "android":
    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. src/cmd/compile/internal/ssa/debug.go

    // only its end coordinate.
    type pendingEntry struct {
    	present                bool
    	startBlock, startValue ID
    	// The location of each piece of the variable, in the same order as the
    	// SlotIDs in varParts.
    	pieces []VarLoc
    }
    
    func (e *pendingEntry) clear() {
    	e.present = false
    	e.startBlock = 0
    	e.startValue = 0
    	for i := range e.pieces {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    		}
    	}
    
    	// kind and listKind may not be the same or parsing become ambiguous
    	if len(names.Kind) > 0 && names.Kind == names.ListKind {
    		allErrs = append(allErrs, field.Invalid(fldPath.Child("listKind"), names.ListKind, "kind and listKind may not be the same"))
    	}
    
    	for i, category := range names.Categories {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/tests/raise-target-subgraphs.mlir

      %5 = "tfl.conv_2d"(%2, %3, %4) {tac.device = "GPU", tac.inference_type = "FLOAT", dilation_h_factor = 1 : i32, dilation_w_factor = 1 : i32, fused_activation_function = "NONE", padding = "SAME", stride_h = 1 : i32, stride_w = 1 : i32} : (tensor<256x30x30x16xf32>, tensor<16x3x3x16xf32>, tensor<16xf32>) -> tensor<256x30x30x16xf32>
      func.return %5 : tensor<256x30x30x16xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/ppc64.s

    	MOVD $-8589934590, R5           // 3ca00000e8a50000 or 0602000038a00002
    
    	// For backwards compatibility, MOVW $const,Rx and MOVWZ $const,Rx assemble identically
    	// and accept the same constants.
    	MOVW $2147483648, R5            // 64058000
    	MOVWZ $-2147483648, R5          // 3ca08000
    
    	// TODO: These are preprocessed by the assembler into MOVD $const>>shift, R5; SLD $shift, R5.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

                    }
    
                    @TaskAction
                    void run() {
                    }
                }
    
                // ensure there are multiple warnings for the same properties
                task a(type: SomeTask)
                task b(type: SomeTask)
                task c(dependsOn: [a, b])
            """
    
            when:
            configurationCacheRunLenient "c"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
Back to top