Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 194 for Lives (0.15 sec)

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

        for (AtomicInteger value : countMap.values()) {
          sum += value.get();
        }
        return Ints.saturatedCast(sum);
      }
    
      /*
       * Note: the superclass toArray() methods assume that size() gives a correct
       * answer, which ours does not.
       */
    
      @Override
      public Object[] toArray() {
        return snapshot().toArray();
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolutionResultApiIntegrationTest.groovy

    foo:1.0 between versions 1.0 and 0.5
    leaf:2.0 forced
    bar:1.0 requested
    baz:1.0 requested
    """
        }
    
        @ToBeFixedForConfigurationCache(because = "task exercises the resolution result API")
        def "resolution result API gives access to dependency reasons in case of conflict"() {
            given:
            mavenRepo.with {
                def leaf1 = module('org.test', 'leaf', '1.0').publish()
                def leaf2 = module('org.test', 'leaf', '1.1').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  3. src/regexp/exec_test.go

    //	-;-
    //	-;0-3 0-1 1-2 2-3
    //
    // The stanza begins by defining a set of strings, quoted
    // using Go double-quote syntax, one per line. Then the
    // regexps section gives a sequence of regexps to run on
    // the strings. In the block that follows a regexp, each line
    // gives the semicolon-separated match results of running
    // the regexp on the corresponding string.
    // Each match result is either a single -, meaning no match, or a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  4. src/regexp/exec.go

    // on runq and appending new threads to nextq.
    // The step processes the rune c (which may be endOfText),
    // which starts at position pos and ends at nextPos.
    // nextCond gives the setting for the empty-width flags after c.
    func (m *machine) step(runq, nextq *queue, pos, nextPos int, c rune, nextCond *lazyFlag) {
    	longest := m.re.longest
    	for j := 0; j < len(runq.dense); j++ {
    		d := &runq.dense[j]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 04 20:10:54 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ConcurrentHashMultiset.java

        for (AtomicInteger value : countMap.values()) {
          sum += value.get();
        }
        return Ints.saturatedCast(sum);
      }
    
      /*
       * Note: the superclass toArray() methods assume that size() gives a correct
       * answer, which ours does not.
       */
    
      @Override
      public Object[] toArray() {
        return snapshot().toArray();
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  6. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultModelResolver.java

    import org.eclipse.aether.resolution.VersionRangeResolutionException;
    import org.eclipse.aether.resolution.VersionRangeResult;
    
    /**
     * A model resolver to assist building of dependency POMs. This resolver gives priority to those repositories that have
     * been initially specified and repositories discovered in dependency POMs are recessively merged into the search chain.
     *
     * @see DefaultArtifactDescriptorReader
     */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  7. cmd/kube-controller-manager/app/controllermanager.go

    	// ClientBuilder will provide a client for this controller to use
    	ClientBuilder clientbuilder.ControllerClientBuilder
    
    	// InformerFactory gives access to informers for the controller.
    	InformerFactory informers.SharedInformerFactory
    
    	// ObjectOrMetadataInformerFactory gives access to informers for typed resources
    	// and dynamic resources by their metadata. All generic controllers currently use
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  8. internal/grid/types.go

    	b := Bytes(GetByteBufferCap(size))
    	return &b
    }
    
    // NewBytesWith returns a new Bytes with the provided content.
    // When sent as a parameter, the caller gives up ownership of the byte slice.
    // When returned as response, the handler also gives up ownership of the byte slice.
    func NewBytesWith(b []byte) *Bytes {
    	bb := Bytes(b)
    	return &bb
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 01 23:42:09 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/NativeProjectWithDepsGeneratorTask.groovy

                        }
                    }
    
                    // Depend on all projects after this one.
                    // With the number of projects we generate, this gives us a ~7-layer deep dependency graph
                    // within a group of libraries
                    dependentProjects.addAll(libraries.drop(idx+1))
    
                    generateLibrarySubproject(subprojectName,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 11.2K bytes
    - Viewed (0)
  10. src/runtime/lockrank.go

    	lockRankExecRInternal
    	lockRankTestRInternal
    )
    
    // lockRankLeafRank is the rank of lock that does not have a declared rank,
    // and hence is a leaf lock.
    const lockRankLeafRank lockRank = 1000
    
    // lockNames gives the names associated with each of the above ranks.
    var lockNames = []string{
    	lockRankSysmon:          "sysmon",
    	lockRankScavenge:        "scavenge",
    	lockRankForcegc:         "forcegc",
    	lockRankDefer:           "defer",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top