Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,426 for ahead (0.06 sec)

  1. src/cmd/internal/obj/plist.go

    			if p.Link == nil {
    				break // Reached the end, don't bother marking the end
    			}
    			if isRestartable(p.Link) {
    				// Next Prog is also restartable. No need to mark the end
    				// of this sequence. We'll just go ahead mark the next one.
    				continue
    			}
    			p = Appendp(p, newprog)
    			p.As = APCDATA
    			p.From.Type = TYPE_CONST
    			p.From.Offset = abi.PCDATA_UnsafePoint
    			p.To.Type = TYPE_CONST
    			p.To.Offset = prevPcdata
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. src/internal/trace/generation.go

    	for {
    		b, gen, err := readBatch(r)
    		if err == io.EOF {
    			break
    		}
    		if err != nil {
    			if g.gen != 0 {
    				// This is an error reading the first batch of the next generation.
    				// This is fine. Let's forge ahead assuming that what we've got so
    				// far is fine.
    				spillErr = err
    				break
    			}
    			return nil, nil, err
    		}
    		if gen == 0 {
    			// 0 is a sentinel used by the runtime, so we'll never see it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 22:14:45 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/codegen_test_h.golden

    // Generated by tfcompile, the TensorFlow graph compiler.  DO NOT EDIT!
    //
    // This header was generated via ahead-of-time compilation of a TensorFlow
    // graph.  An object file corresponding to this header was also generated.
    // This header gives access to the functionality in that object file.
    //
    // clang-format off
    
    #ifndef TFCOMPILE_GENERATED_entry_point_H_  // NOLINT(build/header_guard)
    #define TFCOMPILE_GENERATED_entry_point_H_  // NOLINT(build/header_guard)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. src/compress/bzip2/bzip2.go

    			if br.err != nil {
    				return 0, br.err
    			}
    			if bz2.fileCRC != wantFileCRC {
    				br.err = StructuralError("file checksum mismatch")
    				return 0, br.err
    			}
    
    			// Skip ahead to byte boundary.
    			// Is there a file concatenated to this one?
    			// It would start with BZ.
    			if br.bits%8 != 0 {
    				br.ReadBits(br.bits % 8)
    			}
    			b, err := br.r.ReadByte()
    			if err == io.EOF {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex.go

    		ObjectFilter:    options.Client.ObjectFilter(),
    		ObjectTransform: kubeclient.StripPodUnusedFields,
    	}, krt.WithName("Pods"))
    
    	// TODO: Should this go ahead and transform the full ns into some intermediary with just the details we care about?
    	Namespaces := krt.NewInformer[*v1.Namespace](options.Client, krt.WithName("Namespaces"))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 19 17:19:41 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/util/transport/Transport.java

            case 0: /* not connected - just return */
            case 5:
            case 6:
                return false;
            case 2:
                hard = true;
            case 3: /* connected - go ahead and disconnect */
                if ( this.response_map.size() != 0 && !hard && inUse ) {
                    break; /* outstanding requests */
                }
                try {
                    this.state = 5;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 01 18:12:21 UTC 2020
    - 24.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modcmd/download.go

    	// its go.mod file, and record the maximum version (either from the file or
    	// from the resulting TooNewError), all before we try the actual full download
    	// of each module.
    	//
    	// For now, we go ahead and try all the downloads and collect the errors, and
    	// if any download failed due to a TooNewError, we switch toolchains and try
    	// again. Any downloads that already succeeded will still be in cache.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/transforms/pick_subgraphs.cc

      std::vector<Subgraph*> input_subgraphs;
      for (auto input : current_graph_call.getOperands()) {
        func::CallOp input_call = GetProducerCallOpOrNull(input);
        // If the input subgraph is not processed yet, we just go ahead and process
        // that one first.
        if (input_call == nullptr) continue;
    
        if (unprocessed_subgraphs->count(input_call) > 0) {
          unprocessed_subgraphs->remove(input_call);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 24 15:10:02 UTC 2022
    - 19.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_source.go

    	} else {
    		// Dynamic JSON informer fallback.
    		// Cannot use shared dynamic informer since it would be impossible
    		// to clean CRD informers properly with multiple dependents
    		// (cannot start ahead of time, and cannot track dependencies via stopCh)
    		informer = dynamicinformer.NewFilteredDynamicInformer(
    			s.dynamicClient,
    			mapping.Resource,
    			corev1.NamespaceAll,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 23:07:34 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. src/math/big/ratconv.go

    //	digit    = "0" ... "9" .
    //
    // A base 2 exponent is only permitted if base2ok is set.
    func scanExponent(r io.ByteScanner, base2ok, sepOk bool) (exp int64, base int, err error) {
    	// one char look-ahead
    	ch, err := r.ReadByte()
    	if err != nil {
    		if err == io.EOF {
    			err = nil
    		}
    		return 0, 10, err
    	}
    
    	// exponent char
    	switch ch {
    	case 'e', 'E':
    		base = 10
    	case 'p', 'P':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 12.3K bytes
    - Viewed (0)
Back to top