Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,020 for necessarily (0.28 sec)

  1. architecture/environments/operator.md

    function in the Istio control plane without necessarily being tied to any one component that runs in a Deployment.
    Component settings are those that necessarily refer to a particular Deployment or Service. For example, the number
    of Pilot replicas is a component setting, because it refers to a component which is a Deployment in the
    cluster. Most K8s platform settings are necessarily component settings.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

         * The Java tools location is {@link StandardLocation#CLASS_PATH}.
         *
         * <h4>Context-sensitive interpretation</h4>
         * A dependency with this path type will not necessarily be placed on the class-path.
         * There are two circumstances where the dependency may nevertheless be placed somewhere else:
         *
         * <ul>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmFeature.java

     * feature to get access to the optional dependencies.</p>
     *
     * <p>This "extending" functionality is fragile, in that it allows the production code to be compiled and
     * tested against dependencies which will not necessarily be present at runtime. For this reason, we are
     * planning to deprecate the "extending" functionality. For more information, see {@link #doExtendProductionCode}.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 21K bytes
    - Viewed (0)
  4. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

         * not necessarily mean that a new process will be created for each compile task.
         * Defaults to {@code false}.
         */
        @Input
        public boolean isFork() {
            return fork;
        }
    
        /**
         * Sets whether to run the compiler in its own process. Note that this does
         * not necessarily mean that a new process will be created for each compile task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseClasspathIntegrationTest.groovy

            assert classpathB.projects.collect { it.name } == ['a']
            classpathB.assertHasLibs('compile-1.0.jar')
        }
    
        /*
         * This is a test describing the current, not necessarily desired behavior. We really shouldn't
         * put duplicate dependencies on the classpath. The order will always be arbitrary and break one
         * use case or another.
         */
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 36.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Multiset.java

       * The order of the elements in the element set is unspecified.
       *
       * <p>If the element set supports any removal operations, these necessarily cause <b>all</b>
       * occurrences of the removed element(s) to be removed from the multiset. Implementations are not
       * expected to support the add operations, although this is possible.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 21K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/transform/transform.go

    	// transformed from src or left over from previous Transform calls)
    	// were written to dst. A nil error can be returned regardless of
    	// whether atEOF is true. If err is nil then nSrc must equal len(src);
    	// the converse is not necessarily true.
    	//
    	// ErrShortDst means that dst was too short to receive all of the
    	// transformed bytes. ErrShortSrc means that src had insufficient data
    	// to complete the transformation. If both conditions apply, then
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/concurrent/TaskRunner.kt

        val name = lock.withLock { nextQueueName++ }
        return TaskQueue(this, "Q$name")
      }
    
      /**
       * Returns a snapshot of queues that currently have tasks scheduled. The task runner does not
       * necessarily track queues that have no tasks scheduled.
       */
      fun activeQueues(): List<TaskQueue> {
        lock.withLock {
          return busyQueues + readyQueues
        }
      }
    
      fun cancelAll() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/EventListener.kt

      ) {
      }
    
      /**
       * Invoked when a request fails to be written.
       *
       * This method is invoked after [requestHeadersStart] or [requestBodyStart]. Note that request
       * failures do not necessarily fail the entire call.
       */
      open fun requestFailed(
        call: Call,
        ioe: IOException,
      ) {
      }
    
      /**
       * Invoked when response headers are first returned from the server.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultVersionedComponentChooser.java

                return null;
            }
    
            // At this point, we need the component metadata, because it may declare attributes that are needed for matching
            // Component metadata may not necessarily hit the network if there is a custom component metadata supplier
            ComponentMetadata componentMetadata = provider.getComponentMetadata();
            if (componentMetadata != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 17:41:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top