Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 177 for unsat (0.06 sec)

  1. cluster/gce/gci/configure.sh

    }
    
    # Removes and restores an EXIT trap.
    #
    # NOTE: this function is duplicated in configure-helper.sh, any changes here
    # should be duplicated there as well.
    function log-trap-pop {
      # Remove current trap.
      unset 'LOG_TRAP_STACK[-1]'
    
      # Restore previous trap.
      if [ ${#LOG_TRAP_STACK[@]} -ne 0 ]; then
        local t="${LOG_TRAP_STACK[-1]}"
        # shellcheck disable=2064
        trap "${t}" EXIT
      else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/main.go

    		*t = ternaryFlagFalse
    	}
    	return nil
    }
    
    func (t *ternaryFlag) String() string {
    	switch *t {
    	case ternaryFlagFalse:
    		return "false"
    	case ternaryFlagTrue:
    		return "true"
    	}
    	return "unset"
    }
    
    func (t *ternaryFlag) IsBoolFlag() bool { return true } // parse like a boolean flag
    
    // Main is the main entry point for the linker code.
    func Main(arch *sys.Arch, theArch Arch) {
    	log.SetPrefix("link: ")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    	// When unset, there is no VolumeAttributeClass applied to this PersistentVolumeClaim
    	// This is an alpha field and requires enabling VolumeAttributesClass feature.
    	// +featureGate=VolumeAttributesClass
    	// +optional
    	CurrentVolumeAttributesClassName *string
    	// ModifyVolumeStatus represents the status object of ControllerModifyVolume operation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"modifyVolumeStatus":               "ModifyVolumeStatus represents the status object of ControllerModifyVolume operation. When this is unset, there is no ModifyVolume operation being attempted. This is an alpha field and requires enabling ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. src/net/ip.go

    	for i, tn := range b {
    		s[i*2], s[i*2+1] = hexDigit[tn>>4], hexDigit[tn&0xf]
    	}
    	return string(s)
    }
    
    // ipEmptyString is like ip.String except that it returns
    // an empty string when ip is unset.
    func ipEmptyString(ip IP) string {
    	if len(ip) == 0 {
    		return ""
    	}
    	return ip.String()
    }
    
    // MarshalText implements the [encoding.TextMarshaler] interface.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. pilot/pkg/simulation/traffic.go

    	FilterChainMatched string
    	RouteMatched       string
    	RouteConfigMatched string
    	VirtualHostMatched string
    	ClusterMatched     string
    	// StrictMatch controls whether we will strictly match the result. If unset, empty fields will
    	// be ignored, allowing testing only fields we care about This allows asserting that the result
    	// is *exactly* equal, allowing asserting a field is empty
    	StrictMatch bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. cmd/admin-handlers-site-replication.go

    	objectAPI, _ := validateAdminReq(ctx, w, r, policy.SiteReplicationInfoAction)
    	if objectAPI == nil {
    		return
    	}
    	opts := getSRStatusOptions(r)
    	// default options to all if status options are unset for backward compatibility
    	var dfltOpts madmin.SRStatusOptions
    	if opts == dfltOpts {
    		opts.Buckets = true
    		opts.Users = true
    		opts.Policies = true
    		opts.Groups = true
    		opts.ILMExpiryRules = true
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. pilot/pkg/model/telemetry_logging.go

    	var al *accesslog.AccessLog
    	switch prov := fp.Provider.(type) {
    	case *meshconfig.MeshConfig_ExtensionProvider_EnvoyFileAccessLog:
    		// For built-in provider, fallback to MeshConfig for formatting options when LogFormat unset.
    		if fp.Name == builtinEnvoyAccessLogProvider && prov.EnvoyFileAccessLog.LogFormat == nil {
    			al = FileAccessLogFromMeshConfig(prov.EnvoyFileAccessLog.Path, push.Mesh)
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/loong64/asm.go

    			if a.Reg == REGSP {
    				// unset base register for better printing, since
    				// a.Offset is still relative to pseudo-SP.
    				a.Reg = obj.REG_NONE
    			}
    			c.instoffset = int64(c.autosize) + a.Offset
    			if c.instoffset >= -BIG && c.instoffset < BIG {
    				return C_SAUTO
    			}
    			return C_LAUTO
    
    		case obj.NAME_PARAM:
    			if a.Reg == REGSP {
    				// unset base register for better printing, since
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  10. operator/pkg/apis/istio/v1alpha1/values_types.proto

      string hub = 2;
    
      // The container image tag to pull. Image will be `Hub/Image:Tag-Variant`.
      google.protobuf.Value tag = 3;
    
      // The container image variant to pull. Options are "debug" or "distroless". Unset will use the default for the given version.
      string variant = 29;
    
      // Image name to pull from. Image will be `Hub/Image:Tag-Variant`.
      // If Image contains a "/", it will replace the entire `image` in the pod.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
Back to top