Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 86 for darkred (0.33 sec)

  1. src/runtime/malloc.go

    	userSize := size
    	if asanenabled {
    		// Refer to ASAN runtime library, the malloc() function allocates extra memory,
    		// the redzone, around the user requested memory region. And the redzones are marked
    		// as unaddressable. We perform the same operations in Go to detect the overflows or
    		// underflows.
    		size += computeRZlog(size)
    	}
    
    	if debug.malloc {
    		if debug.sbrk != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. plugin/pkg/admission/limitranger/admission_test.go

    	if err != nil {
    		t.Errorf("LimitRange should ignore a pod marked for termination")
    	}
    }
    
    // newMockClientForTest creates a mock client that returns a client configured for the specified list of limit ranges
    func newMockClientForTest(limitRanges []corev1.LimitRange) *fake.Clientset {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf.go

    	lsDwsym := dwSym(lineProlog)
    	newattr(unit.DWInfo, dwarf.DW_AT_stmt_list, dwarf.DW_CLS_PTR, 0, lsDwsym)
    
    	// Write .debug_line Line Number Program Header (sec 6.2.4)
    	// Fields marked with (*) must be changed for 64-bit dwarf
    	unitLengthOffset := lsu.Size()
    	d.createUnitLength(lsu, 0) // unit_length (*), filled in at end
    	unitstart = lsu.Size()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. tensorflow/c/c_api.h

    //  arguments are as follows:
    //
    //    ncontrol_outputs: Number of control outputs of the function.
    //    control_outputs: vector of TF_Operation objects to be marked as control
    //      outputs of the function. Operations marked as control outputs are
    //      guaranteed to execute.
    //    control_output_names: Optional. If not nullptr, vector of strings, one
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// events have been sent, a synthetic "Bookmark" event  will be sent.
    	// The bookmark will report the ResourceVersion (RV) corresponding to the
    	// set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation.
    	// Afterwards, the watch stream will proceed as usual, sending watch events
    	// corresponding to changes (subsequent to the RV) to objects watched.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  6. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

        if (input_type.getDimSize(3) % filter_type.getDimSize(2) != 0) {
          return failure();
        }
    
        // TensorFlow convolution op only has two inputs, while the TFLite one has
        // three, with the bias vector marked as optional. However, TOCO has a
        // dedicated pass, EnsureBiasVectors, to create default bias vectors for all
        // those missing. So we model TFLite convolution op as requiring three
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  7. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    // 1. for NodeReady=true node, taint eviction for this pod will be cancelled
    // 2. for NodeReady=false or unknown node, taint eviction of pod will happen and pod will be marked as not ready
    // 3. if node doesn't exist in cache, it will be skipped.
    func (nc *Controller) processPod(ctx context.Context, podItem podUpdateItem) {
    	defer nc.podUpdateQueue.Done(podItem)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	DIREG_DRV  DIREG = 0x00000002 // Open/Create/Delete driver key
    	DIREG_BOTH DIREG = 0x00000004 // Delete both driver and Device key
    )
    
    // SPDRP specifies device registry property codes
    // (Codes marked as read-only (R) may only be used for
    // SetupDiGetDeviceRegistryProperty)
    //
    // These values should cover the same set of registry properties
    // as defined by the CM_DRP codes in cfgmgr32.h.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

         * @implNote Usage: This method should only be called on consumable or resolvable configurations and will emit a deprecation warning if
         * called on a configuration that does not permit this usage, or has had allowed this usage but marked it as deprecated.
         */
        @Override
        public Configuration attributes(Action<? super AttributeContainer> action) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            """
    
            when:
            run 'dependencies', '--configuration', 'conf'
    
            then:
            noExceptionThrown()
    
    
        }
    
        def 'optional dependency marked as no longer pending reverts to pending if hard edge disappears (remover has constraint: #dependsOptional, root has constraint: #constraintsOptional)'() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
Back to top