Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 214 for gives (0.06 sec)

  1. android/guava/src/com/google/common/collect/Sets.java

      }
    
      /**
       * Returns an immutable set instance containing the given enum elements. Internally, the returned
       * set will be backed by an {@link EnumSet}.
       *
       * <p>The iteration order of the returned set follows the enum's iteration order, not the order in
       * which the elements appear in the given collection.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

        return total
    
      def _any_log_contains(
          self, substring: str, log_record_list: List['logging.LogRecord']
      ) -> bool:
        """Returns True if any of the log contains a given substring.
    
        Args:
          substring: A piece of string to check whether it exists in the log
            message.
          log_record_list: A list of `absl.logging.LogRecord`s.
    
        Returns:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Sets.java

      }
    
      /**
       * Returns an immutable set instance containing the given enum elements. Internally, the returned
       * set will be backed by an {@link EnumSet}.
       *
       * <p>The iteration order of the returned set follows the enum's iteration order, not the order in
       * which the elements appear in the given collection.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/route/route.go

    	VirtualServiceHosts []string
    
    	// Routes in the virtual host
    	Routes []*route.Route
    }
    
    // BuildSidecarVirtualHostWrapper creates virtual hosts from the given set of virtual Services
    // and a list of Services from the service registry. Services are indexed by FQDN hostnames.
    // The list of Services is also passed to allow maintaining consistent ordering.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

                    DefaultServiceRegistry.this.addProvider(provider);
                }
            };
        }
    
        /**
         * Adds a service instance to this registry with the given public type. The given object is closed when this registry is closed.
         */
        public <T> DefaultServiceRegistry add(Class<? extends T> serviceType, T serviceInstance) {
            assertMutable();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

            expect:
            succeeds ':outgoingVariants'
            reportsCompleteAbsenceOfResolvableVariants()
        }
    
        def "if only resolvable configurations present, task reports complete absence"() {
            given:
            buildFile << """
                configurations.create("custom") {
                    description = "My custom configuration"
                    assert canBeResolved
                    canBeConsumed = false
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 50K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/buildlist.go

    		// preserve its cached ModuleGraph (if any).
    		return rs, nil
    	}
    
    	return newRequirements(unpruned, roots, direct), nil
    }
    
    // convertPruning returns a version of rs with the given pruning behavior.
    // If rs already has the given pruning, convertPruning returns rs unmodified.
    func convertPruning(ctx context.Context, rs *Requirements, pruning modPruning) (*Requirements, error) {
    	if rs.pruning == pruning {
    		return rs, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. pkg/controller/podautoscaler/horizontal.go

    	}
    	logger := klog.FromContext(ctx)
    	logger.V(2).Info("Successfully updated status", "HPA", klog.KObj(hpa))
    	return nil
    }
    
    // setCondition sets the specific condition type on the given HPA to the specified value with the given reason
    // and message.  The message and args are treated like a format string.  The condition will be added if it is
    // not present.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. src/net/http/request.go

    	GetBody func() (io.ReadCloser, error)
    
    	// ContentLength records the length of the associated content.
    	// The value -1 indicates that the length is unknown.
    	// Values >= 0 indicate that the given number of bytes may
    	// be read from Body.
    	//
    	// For client requests, a value of 0 with a non-nil Body is
    	// also treated as unknown.
    	ContentLength int64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/SetsTest.java

        return ImmutableList.copyOf(elements);
      }
    
      /**
       * Utility method to verify that the given LinkedHashSet is equal to and hashes identically to a
       * set constructed with the elements in the given collection. Also verifies that the ordering in
       * the set is the same as the ordering of the given contents.
       */
      private static <E> void verifyLinkedHashSetContents(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
Back to top