Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 296 for fetches (0.14 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    		ui.PrintErr(fmt.Sprintf("Fetched %d base profiles out of %d", got, want))
    	}
    
    	return psrc, pbase, msrc, mbase, save, nil
    }
    
    // chunkedGrab fetches the profiles described in source and merges them into
    // a single profile. It fetches a chunk of profiles concurrently, with a maximum
    // chunk size to limit its memory usage.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. pkg/volume/plugins.go

    	}
    	if len(matchedPluginNames) > 1 {
    		return nil, fmt.Errorf("multiple volume plugins matched: %s", strings.Join(matchedPluginNames, ","))
    	}
    
    	return match, nil
    }
    
    // FindPluginByName fetches a plugin by name. If no plugin is found, returns error.
    func (pm *VolumePluginMgr) FindPluginByName(name string) (VolumePlugin, error) {
    	pm.mutex.RLock()
    	defer pm.mutex.RUnlock()
    
    	var match VolumePlugin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_save_function_ops_to_main.cc

    // Appends `value` to the arguments of the `FetchOp` of `graph_op`.
    void AppendValueToFetch(GraphOp graph_op, Value value) {
      FetchOp old_main_fetch = graph_op.GetFetch();
      auto fetches = llvm::to_vector(old_main_fetch.getFetches());
      fetches.emplace_back(value);
    
      auto builder = OpBuilder::atBlockTerminator(&graph_op.GetBody());
      builder.create<FetchOp>(old_main_fetch.getLoc(), std::move(fetches));
      old_main_fetch.erase();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. tools/bug-report/pkg/bugreport/bugreport.go

    		}
    	}
    
    	// Not all items are subject to timeout. Proceed only if the non-cancellable items have completed.
    	mandatoryWg.Wait()
    
    	// If log fetches have completed, cancel the timeout.
    	go func() {
    		optionalWg.Wait()
    		cmdTimer.Reset(0)
    	}()
    
    	// Wait for log fetches, up to the timeout.
    	<-cmdTimer.C
    
    	// Find the timeout duration left for the analysis process.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_initializer_function_ops_to_main.cc

      return wrapper_island_op;
    }
    
    // Adds a new fetch operand for the main function's GraphOp.
    void AddFetchOperandToMain(GraphOp main_graph_op, const Value fetch_operand) {
      FetchOp old_fetch = main_graph_op.GetFetch();
      const absl::Cleanup erase_old_fetch = [old_fetch]() mutable {
        old_fetch.erase();
      };
    
      auto fetches = llvm::to_vector(old_fetch.getFetches());
      fetches.emplace_back(fetch_operand);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:54:52 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/util/util.go

    	if err != nil {
    		return nil, fmt.Errorf(
    			"error performing CSI migration checks and translation for inline volume %q: %v",
    			podVolume.Name,
    			err)
    	}
    	return spec, nil
    }
    
    // getPVCFromCache fetches the PVC object with the given namespace and
    // name from the shared internal PVC store.
    // This method returns an error if a PVC object does not exist in the cache
    // with the given namespace/name.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/apiclient/wait.go

    	WaitForPodsWithLabel(kvLabel string) error
    	// WaitForPodToDisappear waits for the given Pod in the kube-system namespace to be deleted
    	WaitForPodToDisappear(staticPodName string) error
    	// WaitForStaticPodSingleHash fetches sha256 hash for the control plane static pod
    	WaitForStaticPodSingleHash(nodeName string, component string) (string, error)
    	// WaitForStaticPodHashChange waits for the given static pod component's static pod hash to get updated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/codehost/git.go

    	refsErr error
    
    	localTagsOnce sync.Once
    	localTags     sync.Map // map[string]bool
    }
    
    const (
    	// How much have we fetched into the git repo (in this process)?
    	fetchNone = iota // nothing yet
    	fetchSome        // shallow fetches of individual hashes
    	fetchAll         // "fetch -t origin": get all remote branches and tags
    )
    
    // loadLocalTags loads tag references from the local git cache
    // into the map r.localTags.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    					hostname)
    			}
    		}
    
    		esc.c.opts.XDSUpdater.EDSUpdate(shard, string(hostname), namespace, endpoints)
    	}
    }
    
    // getPod fetches a pod by name or IP address.
    // A pod may be missing (nil) for two reasons:
    //   - It is an endpoint without an associated Pod. In this case, expectPod will be false.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/aot/BUILD

        tags = [
            "manual",
        ],
    )
    
    # A test of tf_library that includes a graph with an unknown op, but where
    # the compilation works because the node with the unknown op is not needed
    # for the fetches.
    tf_library(
        name = "test_graph_tfunknownop",
        testonly = 1,
        config = "test_graph_tfunknownop.config.pbtxt",
        cpp_class = "UnknownOpAddComp",
        graph = "test_graph_tfunknownop.pbtxt",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 16:13:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top