Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 55 for uniqify (0.12 sec)

  1. guava/src/com/google/common/collect/ImmutableSortedSet.java

       * SortedSet#comparator()}, which returns {@code null} to indicate natural ordering.
       */
      @Override
      public Comparator<? super E> comparator() {
        return comparator;
      }
    
      @Override // needed to unify the iterator() methods in Collection and SortedIterable
      public abstract UnmodifiableIterator<E> iterator();
    
      /**
       * {@inheritDoc}
       *
       * <p>This method returns a serializable {@code ImmutableSortedSet}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ImmutableSortedSet.java

       * SortedSet#comparator()}, which returns {@code null} to indicate natural ordering.
       */
      @Override
      public Comparator<? super E> comparator() {
        return comparator;
      }
    
      @Override // needed to unify the iterator() methods in Collection and SortedIterable
      public abstract UnmodifiableIterator<E> iterator();
    
      /**
       * {@inheritDoc}
       *
       * <p>This method returns a serializable {@code ImmutableSortedSet}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  3. tensorflow/c/c_api.h

    // `device` is copied and has no lifetime requirements.
    TF_CAPI_EXPORT extern void TF_ImportGraphDefOptionsSetDefaultDevice(
        TF_ImportGraphDefOptions* opts, const char* device);
    
    // Set whether to uniquify imported operation names. If true, imported operation
    // names will be modified if their name already exists in the graph. If false,
    // conflicting names will be treated as an error. Note that this option has no
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  4. src/cmd/dist/test.go

    			return nil
    		})
    	}
    	if test.pkg != "" && len(test.pkgs) == 0 {
    		// Common case. Avoid copying.
    		register1(test)
    		return
    	}
    	// TODO(dmitshur,austin): It might be better to unify the execution of 'go test pkg'
    	// invocations for the same variant to be done with a single 'go test pkg1 pkg2 pkg3'
    	// command, just like it's already done in registerStdTest and registerRaceBenchTest.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    	// TODO(wojtek-t): It seems that etcd is currently returning a different error,
    	// being an Internal error of "etcd event received with PrevKv=nil".
    	// We temporary allow both but we should unify here.
    	internalError := metav1.Status{
    		Status: metav1.StatusFailure,
    		Code:   http.StatusInternalServerError,
    		Reason: metav1.StatusReasonInternalError,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  6. src/runtime/traceback.go

    				callCgoSymbolizer(&arg)
    			}
    			if stop {
    				return
    			}
    		}
    	}
    	return n, 0
    }
    
    // printAncestorTraceback prints the traceback of the given ancestor.
    // TODO: Unify this with gentraceback and CallersFrames.
    func printAncestorTraceback(ancestor ancestorInfo) {
    	print("[originating from goroutine ", ancestor.goid, "]:\n")
    	for fidx, pc := range ancestor.pcs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. src/net/http/transport.go

    // testing.
    var errRequestCanceled = http2errRequestCanceled
    var errRequestCanceledConn = errors.New("net/http: request canceled while waiting for connection") // TODO: unify?
    
    // errRequestDone is used to cancel the round trip Context after a request is successfully done.
    // It should not be seen by the user.
    var errRequestDone = errors.New("net/http: request completed")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        return InferShapeForFunctionAttachedToXlaHostCompute(host_compute_op);
      }
    
      // TODO(jpienaar): Extract function input arg constraint interface.
      // TODO(jpienaar): Unify the shape propagation to functions using interface.
      if (auto map_dataset_op = dyn_cast<MapDatasetOp>(op)) {
        // TODO(jpienaar): The output type of these ops need to be refined.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    }
    
    absl::StatusOr<mlir::Attribute> ImporterBase::ConvertAttributeValue(
        const AttrValue& value) {
      switch (value.value_case()) {
        case AttrValue::kFunc: {
          // TODO(b/156546237): Unify kFunc/NameAttrList attribute representation.
          // Currently kFunc/NameAttrList attributes in a kList/repeated AttrValue
          // will not use this representation. This also doesn't handle empty
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.6.md

    * genericapiserver: turn APIContainer.SecretRoutes into a real ServeMux ([#38826](https://github.com/kubernetes/kubernetes/pull/38826), [@sttts](https://github.com/sttts))
    * genericapiserver: unify swagger and openapi in config ([#38690](https://github.com/kubernetes/kubernetes/pull/38690), [@sttts](https://github.com/sttts))
    
    ### Client
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
Back to top