Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for paused (0.17 sec)

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

    	if len(out) > 0 {
    		// Filter out useless linker warnings caused by bugs outside Go.
    		// See also cmd/link/internal/ld's hostlink method.
    		var save [][]byte
    		var skipLines int
    		for _, line := range bytes.SplitAfter(out, []byte("\n")) {
    			// golang.org/issue/26073 - Apple Xcode bug
    			if bytes.Contains(line, []byte("ld: warning: text-based stub file")) {
    				continue
    			}
    
    			if skipLines > 0 {
    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/net/http/server.go

    		// send on the CloseNotify channel and cancel the context here,
    		// but the behavior was documented as only "may", and we only
    		// did that because that's how CloseNotify accidentally behaved
    		// in very early Go releases prior to context support. Once we
    		// added context support, people used a Handler's
    		// Request.Context() and passed it along. Having that context
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    // The -x flag causes clean to print remove commands as it executes them.
    //
    // The -cache flag causes clean to remove the entire go build cache.
    //
    // The -testcache flag causes clean to expire all test results in the
    // go build cache.
    //
    // The -modcache flag causes clean to remove the entire module
    // download cache, including unpacked source code of versioned
    // dependencies.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. cmd/object-handlers_test.go

    					// Used in test case  4.
    				case TooBigObject:
    					req.ContentLength = globalMaxObjectSize + 1
    					// Malformed signature.
    					// Used in test case  6.
    				case BadSignature:
    					req.Header.Set("authorization", req.Header.Get("authorization")+"a")
    					// Setting an invalid Content-MD5 to force a Md5 Mismatch error.
    					// Used in tesr case 7.
    				case BadMD5:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

      fi
    }
    
    # Creates a symlink for a ($1) so that it may be used as block storage
    function safe-block-symlink(){
      local device="${1}"
      local symdir="${2}"
    
      mkdir -p "${symdir}"
    
      get-or-generate-uuid "${device}"
      local myuuid="${retuuid}"
    
      local sym="${symdir}/local-ssd-${myuuid}"
      # Do not "mkdir -p ${sym}" as that will cause unintended symlink behavior
      ln -s "${device}" "${sym}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

    ABSL_CONST_INIT const absl::string_view kFlexOpNamePrefix = "Flex";
    
    // Use initial buffer size in flatbuffer builder to be same as the initial size
    // used by the TOCO export. (It does not explain rationale for this choice.)
    constexpr size_t kInitialBufferSize = 10240;
    
    // Flatbuffer fields to be padded to 16 bytes aligned.
    constexpr size_t kFbAlignment = 16;
    
    // Set `isSigned` to false if the `type` is an 8-bit unsigned integer type.
    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. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

    outputDirectory:
     - transformed \\(Directory, [0-9a-f]+\\)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  8. cluster/gce/util.sh

          fi
        done
      fi
    }
    
    # Returns kubelet flags used on both Linux and Windows nodes.
    function construct-common-kubelet-flags {
      local flags="${KUBELET_TEST_LOG_LEVEL:-"--v=2"} ${KUBELET_TEST_ARGS:-}"
      flags+=" --cloud-provider=${CLOUD_PROVIDER_FLAG:-external}"
      # TODO(mtaufen): ROTATE_CERTIFICATES seems unused; delete it?
      if [[ -n "${ROTATE_CERTIFICATES:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  9. cmd/metrics-v2.go

    	wg.Add(2)
    	go publish(ReportMetrics(GlobalContext, c.metricsGroups))
    	go publish(globalNotificationSys.GetClusterMetrics(GlobalContext))
    	wg.Wait()
    }
    
    // ReportMetrics reports serialized metrics to the channel passed for the metrics generated.
    func ReportMetrics(ctx context.Context, metricsGroups []*MetricsGroupV2) <-chan MetricV2 {
    	ch := make(chan MetricV2)
    	go func() {
    		defer xioutil.SafeClose(ch)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods.go

    	kubeletUser = "kubelet"
    )
    
    // parseGetSubIdsOutput parses the output from the `getsubids` tool, which is used to query subordinate user or group ID ranges for
    // a given user or group. getsubids produces a line for each mapping configured.
    // Here we expect that there is a single mapping, and the same values are used for the subordinate user and group ID ranges.
    // The output is something like:
    // $ getsubids kubelet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top