Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 696 for Remotes (0.26 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ErrorHandlingModuleComponentRepository.java

        public ErrorHandlingModuleComponentRepository(ModuleComponentRepository<ModuleComponentGraphResolveState> delegate, RepositoryDisabler remoteRepositoryDisabler) {
            this.delegate = delegate;
            local = new ErrorHandlingModuleComponentRepositoryAccess(delegate.getLocalAccess(), getId(), RepositoryDisabler.NoOpDisabler.INSTANCE, getName());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/core-plugins/idea_plugin.adoc

    +
    Removes all IDEA configuration files
    
    `cleanIdeaProject` — link:{groovyDslPath}/org.gradle.api.tasks.Delete.html[Delete]::
    Removes the IDEA project file
    
    `cleanIdeaModule` — link:{groovyDslPath}/org.gradle.api.tasks.Delete.html[Delete]::
    Removes the IDEA module file
    
    `cleanIdeaWorkspace` — link:{groovyDslPath}/org.gradle.api.tasks.Delete.html[Delete]::
    Removes the IDEA workspace file
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  3. maven-compat/src/main/mdo/profiles.mdo

              The lists of the remote repositories for discovering plugins
            ]]></description>
              <association>
                <type>Repository</type>
                <multiplicity>*</multiplicity>
              </association>
              <comment><![CDATA[ This may be removed or relocated in the near
                future. It is undecided whether plugins really need a remote
                repository set of their own. ]]></comment>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 03 21:08:35 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/podtopologyspread/filtering.go

    // (1) critical paths where the least pods are matched on each spread constraint.
    // (2) number of pods matched on each spread constraint.
    // A nil preFilterState denotes it's not set at all (in PreFilter phase);
    // An empty preFilterState object denotes it's a legit state and is set in PreFilter phase.
    // Fields are exported for comparison during testing.
    type preFilterState struct {
    	Constraints []topologySpreadConstraint
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 12.4K bytes
    - Viewed (1)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         */
        @Nonnull
        Session withLocalRepository(@Nonnull LocalRepository localRepository);
    
        /**
         * Creates a derived session using the given remote repositories.
         *
         * @param repositories the new list of remote repositories
         * @return the derived session
         * @throws NullPointerException if {@code repositories} is null
         */
        @Nonnull
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  6. pkg/volume/util/volumepathhandler/volume_path_handler.go

    	MapDevice(devicePath string, mapPath string, linkName string, bindMount bool) error
    	// UnmapDevice removes a symbolic link to block device under specified map path
    	UnmapDevice(mapPath string, linkName string, bindMount bool) error
    	// RemovePath removes a file or directory on specified map path
    	RemoveMapPath(mapPath string) error
    	// IsSymlinkExist returns true if specified symbolic link exists
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/MinMaxPriorityQueue.java

            return (maxHeap.compareElements(1, 2) <= 0) ? 1 : 2;
        }
      }
    
      /**
       * Removes and returns the least element of this queue, or returns {@code null} if the queue is
       * empty.
       */
      @CanIgnoreReturnValue
      @CheckForNull
      public E pollFirst() {
        return poll();
      }
    
      /**
       * Removes and returns the least element of this queue.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 34K bytes
    - Viewed (1)
  8. pilot/pkg/xds/eds_sh_test.go

    // with Service, Instances and an ingress gateway service.
    // It then conducts an EDS query from each network expecting results to match the design of
    // the Split Horizon EDS - all local endpoints + endpoint per remote network that also has
    // endpoints for the service.
    func TestSplitHorizonEds(t *testing.T) {
    	s := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{NetworksWatcher: mesh.NewFixedNetworksWatcher(nil)})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. cmd/kube-scheduler/app/options/options_test.go

    					RequestHeader: apiserveroptions.RequestHeaderAuthenticationOptions{
    						UsernameHeaders:     []string{"x-remote-user"},
    						GroupHeaders:        []string{"x-remote-group"},
    						ExtraHeaderPrefixes: []string{"x-remote-extra-"},
    					},
    					RemoteKubeConfigFileOptional: true,
    				},
    				Authorization: &apiserveroptions.DelegatingAuthorizationOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  10. pkg/api/pod/util.go

    // dropMatchLabelKeysFieldInWeightedPodAffnityTerm removes MatchLabelKeys and MismatchLabelKeys fields from WeightedPodAffinityTerm
    func dropMatchLabelKeysFieldInWeightedPodAffnityTerm(terms []api.WeightedPodAffinityTerm) {
    	for i := range terms {
    		terms[i].PodAffinityTerm.MatchLabelKeys = nil
    		terms[i].PodAffinityTerm.MismatchLabelKeys = nil
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
Back to top