Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of about 10,000 for source2 (0.14 sec)

  1. guava/src/com/google/common/io/CharSource.java

            if (!source.isEmpty()) {
              return false;
            }
          }
          return true;
        }
    
        @Override
        public Optional<Long> lengthIfKnown() {
          long result = 0L;
          for (CharSource source : sources) {
            Optional<Long> lengthIfKnown = source.lengthIfKnown();
            if (!lengthIfKnown.isPresent()) {
              return Optional.absent();
            }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 25.1K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/ComponentBinarySourcesIntegrationTest.groovy

                    assert comp.sources.size() == 1
                    assert binary.sources.size() == 1
                    assert binary.inputs == comp.sources + binary.sources as Set
                }
            }
        }
    }
    '''
    
            expect:
            succeeds "verify"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    // there are some failures. It will return an error if it is unable to
    // fetch any profiles.
    func fetchProfiles(s *source, o *plugin.Options) (*profile.Profile, error) {
    	sources := make([]profileSource, 0, len(s.Sources))
    	for _, src := range s.Sources {
    		sources = append(sources, profileSource{
    			addr:   src,
    			source: s,
    		})
    	}
    
    	bases := make([]profileSource, 0, len(s.Base))
    	for _, src := range s.Base {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. pkg/kubelet/config/config.go

    		if update.Op == kubetypes.ADD {
    			klog.V(4).InfoS("Adding new pods from source", "source", source, "pods", klog.KObjSlice(update.Pods))
    		} else if update.Op == kubetypes.DELETE {
    			klog.V(4).InfoS("Gracefully deleting pods from source", "source", source, "pods", klog.KObjSlice(update.Pods))
    		} else {
    			klog.V(4).InfoS("Updating pods from source", "source", source, "pods", klog.KObjSlice(update.Pods))
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/report/stacks.go

    		s.Sources[leaf].Self += value
    		s.Stacks = append(s.Stacks, stack)
    	}
    }
    
    func (s *StackSet) fillPlaces() {
    	for i, stack := range s.Stacks {
    		seenSrcs := map[int]bool{}
    		for j, src := range stack.Sources {
    			if seenSrcs[src] {
    				continue
    			}
    			seenSrcs[src] = true
    			s.Sources[src].Places = append(s.Sources[src].Places, StackSlot{i, j})
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ImmutableModuleSources.java

        }
    
        public static ImmutableModuleSources of(ModuleSources sources, ModuleSource source) {
            if (sources instanceof ImmutableModuleSources) {
                return new ImmutableModuleSources((ImmutableModuleSources) sources, source);
            }
            List<ModuleSource> all = new ArrayList<>();
            sources.withSources(all::add);
            all.add(source);
            return of(all.toArray(new ModuleSource[0]));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. pkg/kubelet/types/pod_update.go

    // are generated.
    type PodUpdate struct {
    	Pods   []*v1.Pod
    	Op     PodOperation
    	Source string
    }
    
    // GetValidatedSources gets all validated sources from the specified sources.
    func GetValidatedSources(sources []string) ([]string, error) {
    	validated := make([]string, 0, len(sources))
    	for _, source := range sources {
    		switch source {
    		case AllSource:
    			return []string{FileSource, HTTPSource, ApiserverSource}, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractPathSensitivityIntegrationSpec.groovy

        def "single source file renamed with #pathSensitive as input is loaded from cache: #expectedOutcome"() {
            given:
            file("sources/input.txt").text = "input"
    
            declareTestTaskWithPathSensitivity(pathSensitive)
    
            buildFile << """
                test {
                    sources = files("sources")
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/tasks/SourceTask.java

        }
    
        /**
         * Sets the source for this task. The given source object is evaluated as per {@link org.gradle.api.Project#files(Object...)}.
         *
         * @param source The source.
         */
        public void setSource(Object source) {
            sourceFiles = getProject().getObjects().fileCollection().from(source);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/io/ByteSource.java

       * Returns a view of a slice of this byte source that is at most {@code length} bytes long
       * starting at the given {@code offset}. If {@code offset} is greater than the size of this
       * source, the returned source will be empty. If {@code offset + length} is greater than the size
       * of this source, the returned source will contain the slice starting at {@code offset} and
       * ending at the end of this source.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 26.2K bytes
    - Viewed (0)
Back to top