Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 49 for Positive (0.15 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    //     Actual: true (8 is even)
    //   Expected: false
    //
    // NB: Predicates that support negative Boolean assertions have reduced
    // performance in positive ones so be careful not to use them in tests
    // that have lots (tens of thousands) of positive Boolean assertions.
    //
    // To use this class with EXPECT_PRED_FORMAT assertions such as:
    //
    //   // Verifies that Foo() returns an even number.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    //     Actual: true (8 is even)
    //   Expected: false
    //
    // NB: Predicates that support negative Boolean assertions have reduced
    // performance in positive ones so be careful not to use them in tests
    // that have lots (tens of thousands) of positive Boolean assertions.
    //
    // To use this class with EXPECT_PRED_FORMAT assertions such as:
    //
    //   // Verifies that Foo() returns an even number.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  3. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                    if (coreMultiplier <= 0.0f) {
                        throw new IllegalArgumentException("Invalid threads core multiplier value: '" + threadConfiguration
                                + "'. Value must be positive.");
                    }
    
                    int procs = Runtime.getRuntime().availableProcessors();
                    int threads = (int) (coreMultiplier * procs);
                    return threads == 0 ? 1 : threads;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  4. src/crypto/x509/x509.go

    	// RFC 5280 Section 4.1.2.2: serial number must positive
    	//
    	// We _should_ also restrict serials to <= 20 octets, but it turns out a lot of people
    	// get this wrong, in part because the encoding can itself alter the length of the
    	// serial. For now we accept these non-conformant serials.
    	if template.SerialNumber.Sign() == -1 {
    		return nil, errors.New("x509: serial number must be positive")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		a = &Friend{Name: a}
    	}
    
    	return a, isCast
    }
    
    // sourceName parses:
    //
    //	<source-name> ::= <(positive length) number> <identifier>
    //	identifier ::= <(unqualified source code identifier)>
    func (st *state) sourceName() AST {
    	val := st.number()
    	if val <= 0 {
    		st.fail("expected positive number")
    	}
    	if len(st.str) < val {
    		st.fail("not enough characters for identifier")
    	}
    	id := st.str[:val]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        quantized_input = rewriter.create<MulOp>(op.getLoc(), input_ty,
                                                 quantized_input, float_to_quant);
    
        // Round the quantized input always to the positive direction.
        auto half_val = rewriter.create<ConstOp>(
            op.getLoc(),
            DenseElementsAttr::get(scalar_ty, ConvertToAPFloat(0.5, element_ty)));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  7. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				RegisterNode:                  utilpointer.Bool(false),
    				LocalStorageCapacityIsolation: utilpointer.Bool(false),
    				PodLogsDir:                    DefaultPodLogsDir,
    			},
    		},
    		{
    			"all positive",
    			&v1beta1.KubeletConfiguration{
    				EnableServer:       utilpointer.Bool(true),
    				StaticPodPath:      "static/pod/path",
    				SyncFrequency:      metav1.Duration{Duration: 60 * time.Second},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  8. src/runtime/mgcmark.go

    					scanblock(uintptr(unsafe.Pointer(&spw.handle)), goarch.PtrSize, &oneptrmask[0], gcw, nil)
    				}
    			}
    			unlock(&s.speciallock)
    		}
    	}
    }
    
    // gcAssistAlloc performs GC work to make gp's assist debt positive.
    // gp must be the calling user goroutine.
    //
    // This must be called with preemption enabled.
    func gcAssistAlloc(gp *g) {
    	// Don't assist in non-preemptible contexts. These are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  9. src/cmd/internal/testdir/testdir_test.go

    		runoutputGate: make(chan bool, *runoutputLimit),
    	}
    
    	// cmd/distpack deletes GOROOT/test, so skip the test if it isn't present.
    	// cmd/distpack also requires GOROOT/VERSION to exist, so use that to
    	// suppress false-positive skips.
    	if _, err := os.Stat(common.gorootTestDir); os.IsNotExist(err) {
    		if _, err := os.Stat(filepath.Join(testenv.GOROOT(t), "VERSION")); err == nil {
    			t.Skipf("skipping: GOROOT/test not present")
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/options/options_test.go

    	if err != nil {
    		t.Errorf("expected no error, error found %+v", err)
    	}
    
    	opts.EndpointSliceController.MaxEndpointsPerSlice = 1001 // max endpoints per slice should be a positive integer <= 1000
    
    	if err := opts.Validate([]string{"*"}, []string{""}, nil); err == nil {
    		t.Error("expected error, no error found")
    	}
    }
    
    func TestControllerManagerAliases(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top