Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 180 for Result (0.21 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		ResourceVersion:      result1.ResourceVersion,
    		ResourceVersionMatch: metav1.ResourceVersionMatchExact,
    		Recursive:            true,
    	}
    
    	result2 := example.PodList{}
    	if err := store.GetList(ctx, "/pods", options, &result2); err != nil {
    		t.Fatalf("failed to list objects: %v", err)
    	}
    
    	expectNoDiff(t, "incorrect lists", result1, result2)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  2. pkg/controller/endpointslice/endpointslice_controller_test.go

    	// has exactly what we expect it to.
    	if !reflect.DeepEqual(epSlice2, result[0]) {
    		t.Errorf("EndpointSlice was unexpectedly mutated. Expected: %+v, Mutated: %+v", epSlice2, result[0])
    	}
    	if !reflect.DeepEqual(epSlice3, result[1]) {
    		t.Errorf("EndpointSlice was unexpectedly mutated. Expected: %+v, Mutated: %+v", epSlice3, result[1])
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite.go

    	mask_out := (mask_rlw & uint64(mask))
    
    	// Verify the result is still a valid bitmask of <= 32 bits.
    	if !isPPC64WordRotateMask(int64(mask_out)) {
    		return 0
    	}
    	return encodePPC64RotateMask(r, int64(mask_out), 32)
    }
    
    // Test if RLWINM opcode rlw clears the upper 32 bits of the
    // result. Return rlw if it does, 0 otherwise.
    func mergePPC64MovwzregRlwinm(rlw int64) int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbFile.java

            return this.fileLocator.getParent();
        }
    
    
        /**
         * Returns the full uncanonicalized URL of this SMB resource. An
         * <code>SmbFile</code> constructed with the result of this method will
         * result in an <code>SmbFile</code> that is equal to the original.
         *
         * @return The uncanonicalized full URL of this SMB resource.
         */
    
        public String getPath () {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  5. pilot/pkg/networking/core/route/route.go

    }
    
    func dropInternal(keys []string) []string {
    	result := make([]string, 0, len(keys))
    	for _, k := range keys {
    		if isInternalHeader(k) {
    			continue
    		}
    		result = append(result, k)
    	}
    	return result
    }
    
    // TranslateHeadersOperations translates headers operations
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  6. pkg/registry/core/pod/strategy_test.go

    		},
    	}
    	for _, testCase := range testCases {
    		m := MatchPod(labels.Everything(), testCase.fieldSelector)
    		result, err := m.Matches(testCase.in)
    		if err != nil {
    			t.Errorf("Unexpected error %v", err)
    		}
    		if result != testCase.expectMatch {
    			t.Errorf("Result %v, Expected %v, Selector: %v, Pod: %v", result, testCase.expectMatch, testCase.fieldSelector.String(), testCase.in)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            0 * _
    
            when:
            def result = p.get()
    
            then:
            1 * provider.calculateValue(_) >> ValueSupplier.Value.of("value")
            0 * _
    
            and:
            result == (['k1'] as Set)
    
            when:
            def result2 = property.get()
    
            then:
            0 * _
    
            and:
            result2 == [k1: "value"]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

          llvm::dbgs() << "Failed to match op - doesn't have a single use.\n";
          return failure();
        }
    
        // This convolution represents the "q2 * z1" term, which is subtraced from
        // the first convolution result.
        auto other_conv_op = dyn_cast_or_null<stablehlo::ConvolutionOp>(
            subtract_op.getOperand(1).getDefiningOp());
        if (!other_conv_op) {
          LLVM_DEBUG(llvm::dbgs() << "Failed to match other_conv_op.\n");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    		if name.FuncType.Result != nil {
    			rtype := p.rewriteUnsafe(name.FuncType.Result.Go)
    			if rtype != name.FuncType.Result.Go {
    				needsUnsafe = true
    			}
    			sb.WriteString(gofmt(rtype))
    			result = true
    		}
    
    		// Add the second result type, if any.
    		if twoResults {
    			if name.FuncType.Result == nil {
    				// An explicit void result looks odd but it
    				// seems to be how cgo has worked historically.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/prepare-tf.mlir

    // CHECK:  %[[MUL2:.*]] = "tf.Mul"(%[[ARG_M:.*]], %[[RSQRT]])
    // CHECK:  %[[SUB:.*]] = "tf.Sub"(%[[ARG_BETA:.*]], %[[MUL2]])
    // CHECK:  %[[RESULT:.*]] = "tf.Add"(%[[MUL1]], %[[SUB]])
    // CHECK:  return %[[RESULT]]
    }
    
    func.func @batchNormWithGlobalNormalizationWithScaleAfterNormalization(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 59.8K bytes
    - Viewed (0)
Back to top