Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for accelerate (0.21 sec)

  1. cmd/api-router.go

    	},
    	{
    		api:     "logging",
    		methods: []string{http.MethodPut, http.MethodDelete},
    		queries: []string{"logging", ""},
    	},
    	{
    		api:     "accelerate",
    		methods: []string{http.MethodPut, http.MethodDelete},
    		queries: []string{"accelerate", ""},
    	},
    	{
    		api:     "requestPayment",
    		methods: []string{http.MethodPut, http.MethodDelete},
    		queries: []string{"requestPayment", ""},
    	},
    	{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/scanner.go

    		s.nextch()
    		goto redo
    	}
    
    	return
    
    assignop:
    	if s.ch == '=' {
    		s.nextch()
    		s.tok = _AssignOp
    		return
    	}
    	s.tok = _Operator
    }
    
    func (s *scanner) ident() {
    	// accelerate common case (7bit ASCII)
    	for isLetter(s.ch) || isDecimal(s.ch) {
    		s.nextch()
    	}
    
    	// general case
    	if s.ch >= utf8.RuneSelf {
    		for s.atIdentChar(false) {
    			s.nextch()
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

    This optimization has the potential to accelerate your builds significantly:
    
    [source,text]
    ----
    $./gradlew :app:clean :app:build --build-cache
    
    > Task :app:compileJava FROM-CACHE
    > Task :app:processResources NO-SOURCE
    > Task :app:classes UP-TO-DATE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/types.go

    		UnschedulablePlugins:    pqi.UnschedulablePlugins.Clone(),
    		Gated:                   pqi.Gated,
    	}
    }
    
    // PodInfo is a wrapper to a Pod with additional pre-computed information to
    // accelerate processing. This information is typically immutable (e.g., pre-processed
    // inter-pod affinity selectors).
    type PodInfo struct {
    	Pod                        *v1.Pod
    	RequiredAffinityTerms      []AffinityTerm
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  5. pkg/features/kube_features.go

    	// owner: @ahutsunshine
    	// beta: v1.30
    	//
    	// Allows namespace indexer for namespace scope resources in apiserver cache to accelerate list operations.
    	StorageNamespaceIndex featuregate.Feature = "StorageNamespaceIndex"
    
    	// owner: @jsafrane
    	// kep: https://kep.k8s.io/1710
    	// alpha: v1.30
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  6. .github/workflows/build.yml

            uses: actions/setup-java@v4
            with:
              distribution: 'zulu'
              java-version: 17
    
          - name: Enable KVM group perms
            # https://github.blog/changelog/2023-02-23-hardware-accelerated-android-virtualization-on-actions-windows-and-linux-larger-hosted-runners/
            run: |
              echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 01:51:50 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. cluster/gce/config-default.sh

    # is a request for 2 SCSI formatted and mounted SSDs and 1 NVMe block device SSD.
    NODE_LOCAL_SSDS_EXT=${NODE_LOCAL_SSDS_EXT:-}
    # Accelerators to be attached to each node. Format "type=<accelerator-type>,count=<accelerator-count>"
    # More information on available GPUs here - https://cloud.google.com/compute/docs/gpus/
    NODE_ACCELERATORS=${NODE_ACCELERATORS:-""}
    export REGISTER_MASTER_KUBELET=${REGISTER_MASTER:-true}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_device_passes.td

      let summary = "Lifting resource operations out of device computation";
      let description = [{
        This pass lifts resource variable operations outside of device computation.
        This is useful because a lot of accelerator devices can not interact with
        resource variables directly..
    
        Here is a simple example in TensorFlow where a device doubles the value of a
        TensorFlow resource variable and returns new value:
    
        ```mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. cluster/gce/config-test.sh

    fi
    
    if [[ -n "${NODE_ACCELERATORS}" ]]; then
        if [[ "${NODE_ACCELERATORS}" =~ .*type=([a-zA-Z0-9-]+).* ]]; then
            NON_MASTER_NODE_LABELS="${NON_MASTER_NODE_LABELS},cloud.google.com/gke-accelerator=${BASH_REMATCH[1]}"
        fi
    fi
    
    # List of the set of feature gates recognized by the GCP CCM
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
Back to top