Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for excluding (0.32 sec)

  1. src/cmd/go/alldocs.go

    //	-run=""
    //		if non-empty, specifies a regular expression to select
    //		directives whose full original source text (excluding
    //		any trailing spaces and final newline) matches the
    //		expression.
    //
    //	-skip=""
    //		if non-empty, specifies a regular expression to suppress
    //		directives whose full original source text (excluding
    //		any trailing spaces and final newline) matches the
    //		expression. If a directive matches both the -run and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

          }))
        return false;
    
      // Combine shape information including shape info in subtypes.
      Type operand_type = op->getOperand(0).getType();
      Type result_type = result.getType();
      auto new_type = GetCastCompatibleType(operand_type, result_type);
      if (!new_type) {
        // Combine shape information when leaf element types are not the same, not
        // including shape info in subtypes.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers.go

    			namesBuffer.WriteString(",")
    			imagesBuffer.WriteString(",")
    		}
    	}
    	return namesBuffer.String(), imagesBuffer.String()
    }
    
    // formatEventSource formats EventSource as a comma separated string excluding Host when empty.
    // It uses reportingController when Source.Component is empty and reportingInstance when Source.Host is empty
    func formatEventSource(es api.EventSource, reportingController, reportingInstance string) string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  4. src/net/http/serve_test.go

    func serve(code int) HandlerFunc {
    	return func(w ResponseWriter, r *Request) {
    		w.WriteHeader(code)
    	}
    }
    
    // checkQueryStringHandler checks if r.URL.RawQuery has the same value
    // as the URL excluding the scheme and the query string and sends 200
    // response code if it is, 500 otherwise.
    func checkQueryStringHandler(w ResponseWriter, r *Request) {
    	u := *r.URL
    	u.Scheme = "http"
    	u.Host = r.Host
    	u.RawQuery = ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  5. src/net/http/server.go

    const bufferBeforeChunkingSize = 2048
    
    // chunkWriter writes to a response's conn buffer, and is the writer
    // wrapped by the response.w buffered writer.
    //
    // chunkWriter also is responsible for finalizing the Header, including
    // conditionally setting the Content-Type and setting a Content-Length
    // in cases where the handler's final output is smaller than the buffer
    // size. It also conditionally adds chunk headers, when in chunking mode.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    //
    // Permission is hereby granted, free of charge, to any person obtaining a copy
    // of this software and associated documentation files (the "Software"), to deal
    // in the Software without restriction, including without limitation the rights
    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  7. cmd/metrics-v2.go

    	return MetricDescription{
    		Namespace: nodeMetricNamespace,
    		Subsystem: ioSubsystem,
    		Name:      wcharBytes,
    		Help:      "Total bytes written by the process to the underlying storage system including page cache, /proc/[pid]/io wchar",
    		Type:      counterMetric,
    	}
    }
    
    func getMinioProcessIOReadCachedBytesMD() MetricDescription {
    	return MetricDescription{
    		Namespace: nodeMetricNamespace,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods.go

    	}
    	for _, pod := range mirrorPods {
    		podUIDs[pod.UID] = true
    	}
    	kl.statusManager.RemoveOrphanedStatuses(podUIDs)
    }
    
    // HandlePodCleanups performs a series of cleanup work, including terminating
    // pod workers, killing unwanted pods, and removing orphaned volumes/pod
    // directories. No config changes are sent to pod workers while this method
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller_test.go

    				Terminating:             ptr.To[int32](0),
    				UncountedTerminatedPods: &batch.UncountedTerminatedPods{},
    				FailedIndexes:           ptr.To(""),
    			},
    		},
    		"single failed index due to exceeding the backoff limit per index, the job continues": {
    			enableJobBackoffLimitPerIndex: true,
    			job: batch.Job{
    				TypeMeta:   metav1.TypeMeta{Kind: "Job"},
    				ObjectMeta: validObjectMeta,
    				Spec: batch.JobSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  10. cmd/object-handlers_test.go

    				getAPIError(ErrInvalidRange),
    				getGetObjectURL("", bucketName, objectName), "", "")),
    			expectedRespStatus: http.StatusRequestedRangeNotSatisfiable,
    		},
    		// Test case - 5.
    		// Test case with byte range exceeding the object size.
    		// Expected to read till end of the object.
    		{
    			bucketName: bucketName,
    			objectName: objectName,
    			byteRange:  "bytes=10-1000000000000000",
    			accessKey:  credentials.AccessKey,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
Back to top