Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for darkred (1.61 sec)

  1. src/database/sql/sql_test.go

    		{NullString{"aqua", true}, "", NullString{"aqua", true}},
    		{NullString{"brown", false}, "", NullString{"", false}},
    		{"chartreuse", "", NullString{"chartreuse", true}},
    		{NullString{"darkred", true}, "", NullString{"darkred", true}},
    		{NullString{"eel", false}, "", NullString{"", false}},
    		{"foo", NullString{"black", false}, nil},
    	}}
    	nullTestRun(t, spec)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  2. pkg/volume/util/operationexecutor/operation_generator.go

    	if volumetypes.IsUncertainProgressError(mountError) &&
    		actualStateOfWorld.GetDeviceMountState(volumeToMount.VolumeName) == DeviceNotMounted {
    		// only devices which are not mounted can be marked as uncertain. We do not want to mark a device
    		// which was previously marked as mounted here as uncertain.
    		markDeviceUncertainError := actualStateOfWorld.MarkDeviceAsUncertain(volumeToMount.VolumeName, devicePath, deviceMountPath, volumeToMount.SELinuxLabel)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    				optional := cm.Optional != nil && *cm.Optional
    				configMap, err = kl.configMapManager.GetConfigMap(pod.Namespace, name)
    				if err != nil {
    					if errors.IsNotFound(err) && optional {
    						// ignore error when marked optional
    						continue
    					}
    					return result, err
    				}
    				configMaps[name] = configMap
    			}
    
    			for k, v := range configMap.Data {
    				if len(envFrom.Prefix) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    		}
    	})
    }
    
    // Create a new g in state _Grunnable (or _Gwaiting if parked is true), starting at fn.
    // callerpc is the address of the go statement that created this. The caller is responsible
    // for adding the new g to the scheduler. If parked is true, waitreason must be non-zero.
    func newproc1(fn *funcval, callergp *g, callerpc uintptr, parked bool, waitreason waitReason) *g {
    	if fn == nil {
    		fatal("go of nil func value")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. src/crypto/x509/x509_test.go

    			t.Errorf("%s: ExtraNames didn't override Country", test.name)
    		}
    
    		for _, ext := range cert.Extensions {
    			if ext.Id.Equal(oidExtensionSubjectAltName) {
    				if ext.Critical {
    					t.Fatal("SAN extension is marked critical")
    				}
    			}
    		}
    
    		found := false
    		for _, atv := range cert.Subject.Names {
    			if atv.Type.Equal([]int{2, 5, 4, 42}) {
    				found = true
    				break
    			}
    		}
    		if !found {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // mapping.
      void InitializeNamesFromAttribute(FuncOp fn, bool* has_input_attr);
    
      // Determines if the specified operation op's operand at operand_index
      // is marked as a stateful operand.
      bool IsStatefulOperand(mlir::Operation* op, int operand_index);
    
      // Returns a unique name for `val`.
      std::string UniqueName(mlir::Value val);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller_test.go

    			return &v.Type
    		}
    	}
    	return nil
    }
    
    // TestPastDeadlineJobFinished ensures that a Job is correctly tracked until
    // reaching the active deadline, at which point it is marked as Failed.
    func TestPastDeadlineJobFinished(t *testing.T) {
    	_, ctx := ktesting.NewTestContext(t)
    	clientset := fake.NewSimpleClientset()
    	fakeClock := clocktesting.NewFakeClock(time.Now().Truncate(time.Second))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  8. src/reflect/value.go

    // frame into a call using Values.
    // It is in this file so that it can be next to the call method above.
    // The remainder of the MakeFunc implementation is in makefunc.go.
    //
    // NOTE: This function must be marked as a "wrapper" in the generated code,
    // so that the linker can make it work correctly for panic and recover.
    // The gc compilers know to do that for the name "reflect.callReflect".
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    // The go command may use this file to determine that a module is unchanged
    // since the previous invocation and avoid redownloading information about it.
    // Modules that are not redownloaded will be marked in the new output by
    // setting the Reuse field to true. Normally the module cache provides this
    // kind of reuse automatically; the -reuse flag can be useful on systems that
    // do not preserve the module cache.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let description = [{
        Decomposes ReduceDataset op into a while loop that iterates the dataset and calls
        into the reduction function.  This decomposition is only done if the
        ReduceDataset op is marked for compilation with the _xla_compile_device_type
        attribute.
    
        For example, for the following function the ReduceDataset op:
    
        ```mlir
        func.func @single_state_single_dataset_type_no_arguments(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top