Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 80 for Usages (0.2 sec)

  1. RELEASE.md

        *   `tf.data.experimental.service.DispatchServer` now takes a config tuple
            instead of individual arguments. Usages should be updated to
            `tf.data.experimental.service.DispatchServer(dispatcher_config)`.
        *   `tf.data.experimental.service.WorkerServer` now takes a config tuple
            instead of individual arguments. Usages should be updated to
            `tf.data.experimental.service.WorkerServer(worker_config)`.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  2. .github/workflows/tests.yml

    name: tests
    
    on:
      push:
        branches-ignore:
          - 'gh-pages'
      pull_request:
        branches-ignore:
          - 'gh-pages'
    
    permissions:
      contents: read
    
    jobs:
      # Label of the container job
      sqlite:
        strategy:
          matrix:
            go: ['1.22', '1.21', '1.20']
            platform: [ubuntu-latest] # can not run in windows OS
        runs-on: ${{ matrix.platform }}
    
        steps:
        - name: Set up Go 1.x
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:24:34 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. prow/release-commit.sh

    export GO111MODULE=on
    
    DOCKER_HUB=${DOCKER_HUB:-gcr.io/istio-testing}
    GCS_BUCKET=${GCS_BUCKET:-istio-build/dev}
    
    # Enable emulation required for cross compiling a few images (VMs)
    docker run --rm --privileged "${DOCKER_HUB}/qemu-user-static" --reset -p yes
    export ISTIO_DOCKER_QEMU=true
    
    # Use a pinned version in case breaking changes are needed
    BUILDER_SHA=159efd4a18a7325192c4f7cb0acbe5648bfb8658
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. pkg/generated/openapi/zz_generated.openapi.go

    							Format:      "int32",
    						},
    					},
    					"usages": {
    						VendorExtensible: spec.VendorExtensible{
    							Extensions: spec.Extensions{
    								"x-kubernetes-list-type": "atomic",
    							},
    						},
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  5. manifests/charts/gateway/values.yaml

      affinity: {}
    
      # If specified, the gateway will act as a network gateway for the given network.
      networkGateway: ""
    
      # Specify image pull policy if default behavior isn't desired.
      # Default behavior: latest images will be Always else IfNotPresent
      imagePullPolicy: ""
    
      imagePullSecrets: []
    
      # This value is used to configure a Kubernetes PodDisruptionBudget for the gateway.
      #
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 16:51:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. subprojects/public-api/build.gradle.kts

        outgoing.artifact(testRepoLocation) {
            builtBy( "publishMavenPublicationToTestRepository")
        }
        // TODO: De-duplicate this. See publish-public-libraries
        attributes {
            attribute(Usage.USAGE_ATTRIBUTE, project.objects.named(Usage.JAVA_RUNTIME))
            attribute(Category.CATEGORY_ATTRIBUTE, project.objects.named(Category.LIBRARY))
            attribute(LibraryElements.LIBRARY_ELEMENTS_ATTRIBUTE, project.objects.named("gradle-local-repository"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 13:15:08 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    def TF_AdjustContrastv2Op : TF_Op<"AdjustContrastv2", [Pure]> {
      let summary = "Adjust the contrast of one or more images.";
    
      let description = [{
    `images` is a tensor of at least 3 dimensions.  The last 3 dimensions are
    interpreted as `[height, width, channels]`.  The other dimensions only
    represent a collection of images, such as `[batch, height, width, channels].`
    
    Contrast is adjusted independently for each channel of each image.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  8. manifests/charts/ztunnel/templates/daemonset.yaml

    {{- end }}
            securityContext:
              allowPrivilegeEscalation: false
              privileged: false
              capabilities:
                drop:
                - ALL
                add: # See https://man7.org/linux/man-pages/man7/capabilities.7.html
                - NET_ADMIN # Required for TPROXY and setsockopt
                - SYS_ADMIN # Required for `setns` - doing things in other netns
                - NET_RAW # Required for RAW/PACKET sockets, TPROXY
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 01:33:52 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. manifests/addons/dashboards/pilot-dashboard.gen.json

                "y": 1
             },
             "id": 3,
             "panels": [ ],
             "title": "Resource Usage",
             "type": "row"
          },
          {
             "datasource": {
                "type": "datasource",
                "uid": "-- Mixed --"
             },
             "description": "Memory usage of each running instance",
             "fieldConfig": {
                "defaults": {
                   "custom": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  10. pkg/kube/util.go

    	}
    	for _, co := range configOverrides {
    		co(restConfig)
    	}
    
    	return SetRestDefaults(restConfig), nil
    }
    
    // InClusterConfig returns the rest.Config for in cluster usage.
    // Typically, DefaultRestConfig is used and this is auto detected; usage directly allows explicitly overriding to use in-cluster.
    func InClusterConfig(fns ...func(*rest.Config)) (*rest.Config, error) {
    	config, err := rest.InClusterConfig()
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top