Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,091 for GETs (0.07 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/folders.cc

        };
        if (!llvm::all_of(operation->getOperands(), foldable_opr)) {
          return std::nullopt;
        }
        return FoldAdaptor(operation);
      }
    
      // Gets a list of ElementsAttr behind each constant operand.
      llvm::SmallVector<ElementsAttr> OperandData() {
        llvm::SmallVector<ElementsAttr> res;
        res.reserve(operation_->getNumOperands());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 06:11:55 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencySubstitution.java

         *     <li>Any instance of <code>ModuleComponentSelector</code> or <code>ProjectComponentSelector</code></li>
         * </ul>
         *
         * @param notation the notation that gets parsed into an instance of {@link ComponentSelector}.
         */
        void useTarget(Object notation);
    
        /**
         * This method can be used to replace a dependency before it is resolved,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  3. maven-builder-support/src/main/java/org/apache/maven/building/FileSource.java

            return path.toString();
        }
    
        /**
         * Gets the file of this source.
         *
         * @return The underlying file, never {@code null}.
         * @deprecated Use {@link #getPath()} instead.
         */
        @Deprecated
        public File getFile() {
            return path.toFile();
        }
    
        /**
         * Gets the file of this source.
         *
         * @return The underlying file, never {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. pkg/channels/unbounded_test.go

    	for i := 0; i < numWriters; i++ {
    		for j := 0; j < numWrites; j++ {
    			wantReads = append(wantReads, i)
    		}
    	}
    }
    
    // TestSingleWriter starts one reader and one writer goroutine and makes sure
    // that the reader gets all the value added to the buffer by the writer.
    func TestSingleWriter(t *testing.T) {
    	ub := NewUnbounded[int]()
    	reads := []int{}
    
    	var wg sync.WaitGroup
    	wg.Add(1)
    	go func() {
    		defer wg.Done()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 31 19:53:39 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // Gets the number of successful tests.
      int successful_test_count() const;
    
      // Gets the number of failed tests.
      int failed_test_count() const;
    
      // Gets the number of disabled tests that will be reported in the XML report.
      int reportable_disabled_test_count() const;
    
      // Gets the number of disabled tests.
      int disabled_test_count() const;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/embedded.go

    	return errors.New("runtime.encodable cannot be unmarshalled from JSON")
    }
    
    // Marshal may get called on pointers or values, so implement MarshalJSON on value.
    // http://stackoverflow.com/questions/21390979/custom-marshaljson-never-gets-called-in-go
    func (e encodable) MarshalJSON() ([]byte, error) {
    	return Encode(e.E, e.obj)
    }
    
    // NewEncodableList creates an object that will be encoded with the provided codec on demand.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 02 09:39:03 UTC 2019
    - 4.3K bytes
    - Viewed (0)
  7. pkg/volume/util/recyclerclient/recycler_client_test.go

    			},
    			expectedError: "failed to recycle volume: Pod was active on the node longer than specified deadline",
    		},
    		{
    			// Recycler pod gets deleted
    			name:      "RecyclerDeleted",
    			createPod: newPod("podRecyclerDeleted", v1.PodPending, ""),
    			eventSequence: []watch.Event{
    				// Pod gets Running and Succeeded
    				newPodEvent(watch.Added, "podRecyclerDeleted", v1.PodPending, ""),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  8. pkg/proxy/nftables/README.md

    to a network interface in the host network namespace get routed along the input path;
    anything else (including, in particular, packets destined for a pod IP) gets routed along
    the forward path.
    
    ## kube-proxy's use of nftables hooks
    
    Kube-proxy uses nftables for seven things:
    
      - Using DNAT to rewrite traffic from service IPs (cluster IPs, external IPs, load balancer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:37:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/util.go

    limitations under the License.
    */
    
    package phases
    
    import (
    	"k8s.io/component-base/version"
    
    	kubeadmapiv1 "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm/v1beta3"
    )
    
    // SetKubernetesVersion gets the current Kubeadm version and sets it as KubeadmVersion in the config,
    // unless it's already set to a value different from the default.
    func SetKubernetesVersion(cfg *kubeadmapiv1.ClusterConfiguration) {
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 14:17:32 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. pkg/kube/informerfactory/factory.go

    	// which run until the stop channel gets closed.
    	Start(stopCh <-chan struct{})
    
    	// InformerFor returns the SharedIndexInformer the provided type.
    	InformerFor(resource schema.GroupVersionResource, opts kubetypes.InformerOptions, newFunc NewInformerFunc) StartableInformer
    
    	// WaitForCacheSync blocks until all started informers' caches were synced
    	// or the stop channel gets closed.
    	WaitForCacheSync(stopCh <-chan struct{}) bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top