Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 512 for fetches (0.2 sec)

  1. release/downloadIstioCandidate.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    #
    # This file will be fetched as: curl -L https://git.io/getLatestIstio | sh -
    # so it should be pure bourne shell, not bash (and not reference other scripts)
    #
    # The script fetches the latest Istio release candidate and untars it.
    # You can pass variables on the command line to download a specific version
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 14:13:46 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/route/route.go

    }
    
    // A RIBType represents a type of routing information base.
    type RIBType int
    
    const (
    	RIBTypeRoute     RIBType = syscall.NET_RT_DUMP
    	RIBTypeInterface RIBType = syscall.NET_RT_IFLIST
    )
    
    // FetchRIB fetches a routing information base from the operating
    // system.
    //
    // The provided af must be an address family.
    //
    // The provided arg must be a RIBType-specific argument.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/core_dependency_management.adoc

    <2> *Here we declare remote and local repositories for dependency locations.*
    +
    You can <<declaring_repositories.adoc#declaring-repositories,declare _repositories_>> to tell Gradle where to fetch local or remote _dependencies_. +
    In this example, Gradle fetches _dependencies_ from the link:https://repo1.maven.org/maven2/[Maven Central] and link:https://maven.google.com/[Google] _repositories_. +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/envelope.go

    		t.transformers.Add(base64.StdEncoding.EncodeToString(encKey), transformer)
    		metrics.RecordDekCacheFillPercent(float64(t.transformers.Len()) / float64(t.cacheSize))
    	}
    	return transformer, nil
    }
    
    // getTransformer fetches the transformer corresponding to encKey from cache, if it exists.
    func (t *envelopeTransformer) getTransformer(encKey []byte) value.Transformer {
    	if !t.cacheEnabled {
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 14:23:50 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  5. pkg/kubelet/stats/host_stats_provider.go

    }
    
    type hostStatsProvider struct {
    	// osInterface is the interface for syscalls.
    	osInterface kubecontainer.OSInterface
    	// podEtcHostsPathFunc fetches a pod etc hosts path by uid.
    	podEtcHostsPathFunc PodEtcHostsPathFunc
    	// podLogsDirectory is the root directory path for pod logs.
    	podLogsDirectory string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/timing_ratio_histogram.go

    	// At this point we know v.NewForLabelValuesChecked(..) returns a permanent noop,
    	// which we precisely want to avoid using.  Instead, make our own gauge that
    	// fetches the element on every Set.
    	return &timingRatioHistogramInner{
    		getGaugeOfRatio: func() Gauge { return v.delegate.WithLabelValues(labelValues...) },
    		numerator:       initialNumerator,
    		denominator:     initialDenominator,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.td

    // Checks whether the value of a constant equals the given float, regardless
    // of the tensor dimension.
    class FloatValueEquals<string val> : Constraint<CPred<
      "FloatValueEquals($0, " # val # ")">>;
    
    // Fetches the default or null attribute, used for pattern matching.
    def DefaultOrNullAttr : NativeCodeCall<"DefaultOrNullAttr($_builder, $0)">;
    
    // Returns true if the given op is a StableHLO constant op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 08 04:55:44 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_outline_tpu_island.cc

    // nested module which exhibit a more friendly "V2-like" structure.
    // This is only intended for V1 compatibility mode where the bridge runs without
    // feed/fetches on session create/extend.
    struct TPUBridgeExecutorIslandOutlining
        : public impl::TPUBridgeExecutorIslandOutliningPassBase<
              TPUBridgeExecutorIslandOutlining> {
      void runOnOperation() override;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. cluster/gce/windows/configure.ps1

      }
      catch [System.Net.WebException] {
        if ($Default) {
          return $Default
        }
        else {
          Write-Host "Failed to retrieve value for $Key."
          return $null
        }
      }
    }
    
    # Fetches the value of $MetadataKey, saves it to C:\$Filename and imports it as
    # a PowerShell module.
    #
    # Note: this function depends on common.psm1.
    function FetchAndImport-ModuleFromMetadata {
      param (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 28 21:28:26 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  10. pkg/kubelet/client/kubelet_client.go

    }
    
    // NodeGetterFunc allows implementing NodeGetter with a function
    type NodeGetterFunc func(ctx context.Context, name string, options metav1.GetOptions) (*v1.Node, error)
    
    // Get fetches information via NodeGetterFunc.
    func (f NodeGetterFunc) Get(ctx context.Context, name string, options metav1.GetOptions) (*v1.Node, error) {
    	return f(ctx, name, options)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 07 01:34:49 UTC 2023
    - 7.4K bytes
    - Viewed (0)
Back to top