Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 127 for reachable (0.21 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    	JSONPath string `json:"jsonPath" protobuf:"bytes,1,opt,name=jsonPath"`
    }
    
    // CustomResourceColumnDefinition specifies a column for server side printing.
    type CustomResourceColumnDefinition struct {
    	// name is a human readable name for the column.
    	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
    	// type is an OpenAPI type definition for this column.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/labels.go

    	}
    
    	if container.Lifecycle != nil && container.Lifecycle.PreStop != nil {
    		// Using json encoding so that the PreStop handler object is readable after writing as a label
    		rawPreStop, err := json.Marshal(container.Lifecycle.PreStop)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. common/config/.golangci.yml

          - name: var-naming
          - name: package-comments
          - name: range
          - name: receiver-naming
          - name: indent-error-flow
          - name: superfluous-else
          - name: modifies-parameter
          - name: unreachable-code
          - name: struct-tag
          - name: constant-logical-expr
          - name: bool-literal-in-expr
          - name: redefines-builtin-id
          - name: imports-blacklist
          - name: range-val-in-closure
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. hack/golangci.yaml

          linters:
            - gocritic
    
        # The Kubernetes naming convention for conversion functions uses underscores
        # and intentionally deviates from normal Go conventions to make those function
        # names more readable. Same for SetDefaults_*.
        #
        # https://github.com/kubernetes/kubernetes/issues/117288#issuecomment-1507028627
        # https://github.com/kubernetes/kubernetes/issues/117288#issuecomment-1514201592
        - linters:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. src/internal/trace/event.go

    	Label string
    
    	// Resource is the resource to which this label should be applied.
    	Resource ResourceID
    }
    
    // Range provides details about a Range event.
    type Range struct {
    	// Name is a human-readable name for the range.
    	//
    	// This name can be used to identify the end of the range for the resource
    	// its scoped to, because only one of each type of range may be active on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/wrapper-main/src/executable/resources/META-INF/LICENSE

              the Derivative Works; and
    
          (d) If the Work includes a "NOTICE" text file as part of its
              distribution, then any Derivative Works that You distribute must
              include a readable copy of the attribution notices contained
              within such NOTICE file, excluding those notices that do not
              pertain to any part of the Derivative Works, in at least one
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/copylock/copylock.go

    // String pretty-prints a typePath.
    func (path typePath) String() string {
    	n := len(path)
    	var buf bytes.Buffer
    	for i := range path {
    		if i > 0 {
    			fmt.Fprint(&buf, " contains ")
    		}
    		// The human-readable path is in reverse order, outermost to innermost.
    		fmt.Fprint(&buf, path[n-i-1])
    	}
    	return buf.String()
    }
    
    func lockPathRhs(pass *analysis.Pass, x ast.Expr) typePath {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/Task.java

     *
     * <li>The extra properties of the task. Each task object maintains a map of additional properties. These
     * are arbitrary name -&gt; value pairs which you can use to dynamically add properties to a task object.  Once defined, the properties
     * of this scope are readable and writable.</li>
     *
     * </ul>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.cc

                                                bool report_error) {
      if (sharding.ParseFromString(shard_str)) return mlir::success();
      // TODO(b/287299845) MLIR should only have human readable representation
      // going forward. So, remove parsing binary sharding.
      absl::StatusOr<xla::HloSharding> sharding_hlo = xla::ParseSharding(shard_str);
      if (sharding_hlo.ok()) {
        sharding = sharding_hlo->ToProto();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  10. src/go/types/operand.go

    	case token.FLOAT:
    		kind = UntypedFloat
    	case token.IMAG:
    		kind = UntypedComplex
    	case token.CHAR:
    		kind = UntypedRune
    	case token.STRING:
    		kind = UntypedString
    	default:
    		panic("unreachable")
    	}
    
    	val := makeFromLiteral(lit, k)
    	if val.Kind() == constant.Unknown {
    		x.mode = invalid
    		x.typ = Typ[Invalid]
    		return
    	}
    	x.mode = constant_
    	x.typ = Typ[kind]
    	x.val = val
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top