Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 492 for fetches (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/g3doc/tf_dialects.md

    The region attached to `tf_executor.graph` is terminated by a
    `tf_executor.fetch` operation. The non-control operands of the terminator
    correspond to the result values (or fetches) of the `tf_executor.graph`
    operation. The behavior is undefined if any of the operands of the
    `tf_executor.fetch` is dead.
    
    ```mlir {.mlir}
    %fetches = tf_executor.graph : tensor<*xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 16K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenJvmLibraryArtifactResolutionIntegrationTest.groovy

            sourceArtifact.expectGet()
            javadocArtifact.expectHead()
            javadocArtifact.expectGet()
    
            then:
            checkArtifactsResolvedAndCached()
        }
    
        def "fetches missing snapshot artifacts #condition"() {
            buildFile << """
    if (project.hasProperty('nocache')) {
        configurations.all {
            resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
        }
    }
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. pkg/volume/downwardapi/downwardapi.go

    	podUID  types.UID // TODO: remove this redundancy as soon NewUnmounter func will have *v1.POD and not only types.UID
    	plugin  *downwardAPIPlugin
    	volume.MetricsProvider
    }
    
    // downwardAPIVolumeMounter fetches info from downward API from the pod
    // and dumps it in files
    type downwardAPIVolumeMounter struct {
    	*downwardAPIVolume
    	source v1.DownwardAPIVolumeSource
    	opts   *volume.VolumeOptions
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/upgrade/node.go

    	initCfg.NodeRegistration.IgnorePreflightErrors = sets.List(ignorePreflightErrorsSet)
    
    	var patchesDir string
    	if upgradeCfg.Node.Patches != nil {
    		patchesDir = cmdutil.ValueFromFlagsOrConfig(cmd.Flags(), options.Patches, upgradeCfg.Node.Patches.Directory, nodeOptions.patchesDir).(string)
    	} else {
    		patchesDir = nodeOptions.patchesDir
    	}
    
    	return &nodeData{
    		cfg:                   upgradeCfg,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tf_executor_ops.mlir

        tf_executor.fetch %1#0 : tensor<i1>
      }
      func.return %result : tensor<i1>
    }
    
    // CHECK-LABEL: func @switchN(
    func.func @switchN(%arg0: tensor<i32>, %arg1: tensor<*xf32>) -> tensor<*xf32> {
      %fetches = tf_executor.graph {
    
    // CHECK: tf_executor._SwitchN %{{.*}}, %{{.*}} of 5 : tensor<*xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 25.8K bytes
    - Viewed (0)
Back to top