Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for checkDep (0.2 sec)

  1. src/cmd/go/internal/work/exec.go

    	srcfiles = append(srcfiles, cxxfiles...)
    	b.cacheSrcFiles(a, srcfiles)
    
    	// Running cgo generated the cgo header.
    	need &^= needCgoHdr
    
    	// Sanity check only, since Package.load already checked as well.
    	if len(gofiles) == 0 {
    		return &load.NoGoError{Package: p}
    	}
    
    	// Prepare Go vet config if needed.
    	if need&needVet != 0 {
    		buildVetConfig(a, srcfiles)
    		need &^= needVet
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //
    // For more about vet and its flags, see 'go doc cmd/vet'.
    // For more about specifying packages, see 'go help packages'.
    // For a list of checkers and their flags, see 'go tool vet help'.
    // For details of a specific checker such as 'printf', see 'go tool vet help printf'.
    //
    // The -vettool=prog flag selects a different analysis tool with alternative
    // or additional checks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    }
    
    // runtimeHandlerSupportsRecursiveReadOnlyMounts checks whether the runtime handler supports recursive read-only mounts.
    // The kubelet feature gate is not checked here.
    func runtimeHandlerSupportsRecursiveReadOnlyMounts(runtimeHandlerName string, runtimeHandlers []kubecontainer.RuntimeHandler) bool {
    	if len(runtimeHandlers) == 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. cmd/metrics-v2.go

    			},
    			{
    				Description: MetricDescription{
    					Namespace: nodeMetricNamespace,
    					Subsystem: ilmSubsystem,
    					Name:      "versions_scanned",
    					Help:      "Total number of object versions checked for ilm actions since server uptime",
    					Type:      counterMetric,
    				},
    				Value: float64(globalScannerMetrics.lifetime(scannerMetricILM)),
    			},
    		}
    		for i := range globalScannerMetrics.actions {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let description = [{
        This pass checks that the IR has valid input to TPU TF/XLA bridge.
        It checks the relations of multiple ops. Properties of single ops are
        checked by the 'verify' method of ops.
      }];
    
      let constructor = "TFTPU::CreateTPUValidateInputsPass()";
    }
    
    def ClusterConstantSinkingPass : Pass<"tf-device-constant-sinking", "mlir::func::FuncOp"> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  6. pkg/config/validation/validation.go

    		return fmt.Errorf(`invalid header %q: header cannot have ":" prefix`, name)
    	}
    	return nil
    }
    
    // Copy from https://github.com/bufbuild/protoc-gen-validate/blob/a65858624dd654f2fb306d6af60f737132986f44/module/checker.go#L18
    var httpHeaderValueRegexp = regexp.MustCompile("^[^\u0000-\u0008\u000A-\u001F\u007F]*$")
    
    // ValidateHTTPHeaderValue validates a header value for Envoy
    // Valid: "foo", "%HOSTNAME%", "100%%", "prefix %HOSTNAME% suffix"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    scalar, all sparse indices are set to this single value.
    
    Indices should be sorted in lexicographic order, and indices must not
    contain any repeats. If `validate_indices` is true, these properties
    are checked during execution.
      }];
    
      let arguments = (ins
        TFL_I32OrI64Tensor:$sparse_indices,
        TFL_I32OrI64Tensor:$output_shape,
        TFL_TensorOf<[I32, I64, I8, QI8, UI8, QUI8, TFL_Quint8, F32]>:$sparse_values,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  8. src/net/http/server.go

    	// request body before starting to write a response.
    	fullDuplex bool
    
    	// requestBodyLimitHit is set by requestTooLarge when
    	// maxBytesReader hits its max size. It is checked in
    	// WriteHeader, to make sure we don't consume the
    	// remaining request body to try to advance to the next HTTP
    	// request. Instead, when this is set, we stop reading
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  9. src/net/http/transport_test.go

    	wg.Add(numReqs)
    
    	// Due to the Transport's "socket late binding" (see
    	// idleConnCh in transport.go), the numReqs HTTP requests
    	// below can finish with a dial still outstanding. To keep
    	// the leak checker happy, keep track of pending dials and
    	// wait for them to finish (and be closed or returned to the
    	// idle pool) before we close idle connections.
    	SetPendingDialHooks(func() { wg.Add(1) }, wg.Done)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
Back to top