Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 527 for respective (0.15 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_communication.cc

    #define GEN_PASS_DEF_LEGALIZETFCOMMUNICATIONPASS
    #include "tensorflow/compiler/mlir/tf2xla/transforms/tf_xla_passes.h.inc"
    
    // A pass that legalizes TF/XLA communication ops, propagate their respective
    // tokens (for ordering), and rewrite their respective functions and control
    // flow ops when necessary.
    // Note, this currently does not handle nested modules/functions or region based
    // ops other than certain control flow ops (`mhlo.if`, `mhlo.while`).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Download.java

            try {
                out = new BufferedOutputStream(new FileOutputStream(destination));
    
                // No proxy is passed here as proxies are set globally using the HTTP(S) proxy system properties. The respective protocol handler implementation then makes use of these properties.
                conn = safeUrl.openConnection();
    
                addBasicAuthentication(address, conn);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/rest/update.go

    // errors that can be converted to api.Status. It will invoke update validation with the provided existing
    // and updated objects.
    // It sets zero values only if the object does not have a zero value for the respective field.
    func BeforeUpdate(strategy RESTUpdateStrategy, ctx context.Context, obj, old runtime.Object) error {
    	objectMeta, kind, kerr := objectMetaAndKind(strategy, obj)
    	if kerr != nil {
    		return kerr
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 27 11:48:28 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  4. src/sync/pool.go

    	// It may not be changed concurrently with calls to Get.
    	New func() any
    }
    
    // Local per-P Pool appendix.
    type poolLocalInternal struct {
    	private any       // Can be used only by the respective P.
    	shared  poolChain // Local P can pushHead/popHead; any P can popTail.
    }
    
    type poolLocal struct {
    	poolLocalInternal
    
    	// Prevents false sharing on widespread platforms with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. src/go/types/mono.go

    // are allowed because static instantiation will reach a fixed point.
    
    type monoGraph struct {
    	vertices []monoVertex
    	edges    []monoEdge
    
    	// canon maps method receiver type parameters to their respective
    	// receiver type's type parameters.
    	canon map[*TypeParam]*TypeParam
    
    	// nameIdx maps a defined type or (canonical) type parameter to its
    	// vertex index.
    	nameIdx map[*TypeName]int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/mono.go

    // are allowed because static instantiation will reach a fixed point.
    
    type monoGraph struct {
    	vertices []monoVertex
    	edges    []monoEdge
    
    	// canon maps method receiver type parameters to their respective
    	// receiver type's type parameters.
    	canon map[*TypeParam]*TypeParam
    
    	// nameIdx maps a defined type or (canonical) type parameter to its
    	// vertex index.
    	nameIdx map[*TypeName]int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 00:05:29 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. src/internal/fuzz/encoding.go

    		case []byte: // []uint8
    			fmt.Fprintf(b, "[]byte(%q)\n", t)
    		default:
    			panic(fmt.Sprintf("unsupported type: %T", t))
    		}
    	}
    	return b.Bytes()
    }
    
    // unmarshalCorpusFile decodes corpus bytes into their respective values.
    func unmarshalCorpusFile(b []byte) ([]any, error) {
    	if len(b) == 0 {
    		return nil, fmt.Errorf("cannot unmarshal empty string")
    	}
    	lines := bytes.Split(b, []byte("\n"))
    	if len(lines) < 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 16:39:12 UTC 2022
    - 11K bytes
    - Viewed (0)
  8. src/text/scanner/scanner.go

    //
    //	ScanIdents | ScanInts | SkipComments
    //
    // With the exceptions of comments, which are skipped if SkipComments is
    // set, unrecognized tokens are not ignored. Instead, the scanner simply
    // returns the respective individual characters (or possibly sub-tokens).
    // For instance, if the mode is ScanIdents (not ScanStrings), the string
    // "foo" is scanned as the token sequence '"' [Ident] '"'.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. src/go/doc/doc.go

    	Examples []*Example
    }
    
    // Func is the documentation for a func declaration.
    type Func struct {
    	Doc  string
    	Name string
    	Decl *ast.FuncDecl
    
    	// methods
    	// (for functions, these fields have the respective zero value)
    	Recv  string // actual   receiver "T" or "*T" possibly followed by type parameters [P1, ..., Pn]
    	Orig  string // original receiver "T" or "*T"
    	Level int    // embedding level; 0 means not embedded
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    	// instantiate S with the type-parameters A and B, which are scoped to the
    	// respective methods. L4 and L5 each instantiate S with int. Each of these
    	// instantiations has its own method set, full of methods (and thus objects)
    	// with receivers whose types are the respective instantiations. In other
    	// words, we have
    	//
    	// S[A].Foo, S[A].Bar
    	// S[B].Foo, S[B].Bar
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top