Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 99 of 99 for Nodes (0.05 sec)

  1. cmd/erasure-object.go

    	}
    
    	return fi.ToObjectInfo(minioMetaBucket, key, opts.Versioned || opts.VersionSuspended), nil
    }
    
    // PutObject - creates an object upon reading from the input stream
    // until EOF, erasure codes the data across all disk and additionally
    // writes `xl.meta` which carries the necessary metadata for future
    // object operations.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //	vet         report likely mistakes in packages
    //
    // Use "go help <command>" for more information about a command.
    //
    // Additional help topics:
    //
    //	buildconstraint build constraints
    //	buildmode       build modes
    //	c               calling between Go and C
    //	cache           build and test caching
    //	environment     environment variables
    //	filetype        file types
    //	go.mod          the go.mod file
    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. docs/en/docs/release-notes.md

    * Add docs for: [Additional Status Codes](https://fastapi.tiangolo.com/advanced/additional-status-codes/). PR [#156](https://github.com/tiangolo/fastapi/pull/156).
    
    ## 0.14.0
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/help/helpdoc.go

    line comment. See the go/build package documentation for
    more details.
    	`,
    }
    
    var HelpBuildmode = &base.Command{
    	UsageLine: "buildmode",
    	Short:     "build modes",
    	Long: `
    The 'go build' and 'go install' commands take a -buildmode argument which
    indicates which kind of object file is to be built. Currently supported values
    are:
    
    	-buildmode=archive
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    		"5xx",
    		"gateway-error",
    		"reset",
    		"connect-failure",
    		"retriable-4xx",
    		"refused-stream",
    		"retriable-status-codes",
    		"retriable-headers",
    		"envoy-ratelimited",
    		"http3-post-connect-failure",
    
    		// 'x-envoy-retry-grpc-on' supported policies:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    // https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_02,
    // except that it does not support parameter or arithmetic expansion or command
    // substitution and hard-codes the <blank> delimiters instead of reading them
    // from LC_LOCALE.
    func splitPkgConfigOutput(out []byte) ([]string, error) {
    	if len(out) == 0 {
    		return nil, nil
    	}
    	var flags []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewrite.go

    	case OpARM64NotGreaterEqualF:
    		return OpARM64GreaterEqualF
    	default:
    		panic("unreachable")
    	}
    }
    
    // arm64Invert evaluates (InvertFlags op), which
    // is the same as altering the condition codes such
    // that the same result would be produced if the arguments
    // to the flag-generating instruction were reversed, e.g.
    // (InvertFlags (CMP x y)) -> (CMP y x)
    func arm64Invert(op Op) Op {
    	switch op {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      return builder->create<ConstantOp>(loc, hlo::getScalarLimitOfType(ty, limit));
    }
    
    // Deprecated: This is maintained to aid in porting old code that is not yet
    // dynamic shape aware and uses broadcasting modes that CHLO does not support.
    // Gets the resulting type from a broadcast between two types for statically
    // shaped types. This is to be used for legacy lowerings that both use non
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller_test.go

    		wantStatusActive              int32
    		wantStatusSucceeded           int32
    		wantStatusTerminating         *int32
    	}{
    		"default handling for pod failure if the container matching the exit codes does not match the containerName restriction": {
    			enableJobPodFailurePolicy: 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)
Back to top