Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 74 for Interpret (0.23 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    	}
    
    	positive, value, num, denom, suf, err := parseQuantityString(str)
    	if err != nil {
    		return Quantity{}, err
    	}
    
    	base, exponent, format, ok := quantitySuffixer.interpret(suffix(suf))
    	if !ok {
    		return Quantity{}, ErrSuffix
    	}
    
    	precision := int32(0)
    	scale := int32(0)
    	mantissa := int64(1)
    	switch format {
    	case DecimalExponent, DecimalSI:
    		scale = exponent
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/toolchain/select.go

    	// the minimum toolchain. See issue #61455.
    	if len(os.Args) == 3 && os.Args[1] == "env" && (os.Args[2] == "GOMOD" || os.Args[2] == "GOWORK") {
    		return
    	}
    
    	// Interpret GOTOOLCHAIN to select the Go toolchain to run.
    	gotoolchain := cfg.Getenv("GOTOOLCHAIN")
    	gover.Startup.GOTOOLCHAIN = gotoolchain
    	if gotoolchain == "" {
    		// cfg.Getenv should fall back to $GOROOT/go.env,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:25:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. cmd/utils.go

    		versionID = params[2]
    	}
    
    	if xnet.IsNetworkOrHostDown(err, false) {
    		return BackendDown{Err: err.Error()}
    	}
    
    	minioErr, ok := err.(minio.ErrorResponse)
    	if !ok {
    		// We don't interpret non MinIO errors. As minio errors will
    		// have StatusCode to help to convert to object errors.
    		return err
    	}
    
    	switch minioErr.Code {
    	case "SlowDownWrite":
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  4. src/internal/trace/event.go

    }
    
    // ExperimentalData represents some raw and unparsed sidecar data present in the trace that is
    // associated with certain kinds of experimental events. For example, this data may contain
    // tables needed to interpret ExperimentalEvent arguments, or the ExperimentEvent could just be
    // a placeholder for a differently encoded event that's actually present in the experimental data.
    type ExperimentalData struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/interface.go

    type NodeScore struct {
    	Name  string
    	Score int64
    }
    
    // NodeToStatusMap contains the statuses of the Nodes where the incoming Pod was not schedulable.
    // A PostFilter plugin that uses this map should interpret absent Nodes as UnschedulableAndUnresolvable.
    type NodeToStatusMap map[string]*Status
    
    // NodePluginScores is a struct with node name and scores for that node.
    type NodePluginScores struct {
    	// Name is node name.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      return ctrl_op.getOutputs();
    }
    
    // Build a FuncOp from a tflite SubGraph
    // The buffers are directly taken
    // from the deserialized flatbuffer as we do not have the type information to
    // interpret them until this point. The base_loc parameter is the location of
    // the flatbuffer as a whole (usually a file). If ordered_output_arrays is not
    // empty, then the imported mlir function will only return nodes in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  7. src/crypto/tls/conn.go

    		if c.activeCall.CompareAndSwap(x, x|1) {
    			break
    		}
    	}
    	if x != 0 {
    		// io.Writer and io.Closer should not be used concurrently.
    		// If Close is called while a Write is currently in-flight,
    		// interpret that as a sign that this Close is really just
    		// being used to break the Write and/or clean up resources and
    		// avoid sending the alertCloseNotify, which may block
    		// waiting on handshakeMutex or the c.out mutex.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. pkg/scheduler/internal/queue/scheduling_queue_test.go

    							PluginName:     "fooPlugin2",
    							QueueingHintFn: queueHintReturnQueue,
    						},
    						{
    							// The hint fn tells that this event makes a Pod scheudlable.
    							// Given fooPlugin1 is registered as Pendings, we interpret Queue as queueImmediately.
    							PluginName:     "fooPlugin1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  9. cmd/api-errors.go

    			HTTPStatusCode: apiErr.HTTPStatusCode,
    		}
    	case "XMinioBackendDown":
    		apiErr.Description = fmt.Sprintf("%s (%v)", apiErr.Description, err)
    	case "InternalError":
    		// If we see an internal error try to interpret
    		// any underlying errors if possible depending on
    		// their internal error types.
    		switch e := err.(type) {
    		case kms.Error:
    			apiErr = APIError{
    				Code:           e.APICode,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  10. src/net/http/client_test.go

    	}
    	if got, want := res.TLS.CipherSuite, tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256; got != want {
    		t.Errorf("TLS Cipher Suite = %d; want %d", got, want)
    	}
    }
    
    // Check that an HTTPS client can interpret a particular TLS error
    // to determine that the server is speaking HTTP.
    // See golang.org/issue/11111.
    func TestHTTPSClientDetectsHTTPServer(t *testing.T) {
    	run(t, testHTTPSClientDetectsHTTPServer, []testMode{http1Mode})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top