Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 286 for gomod (0.04 sec)

  1. src/embed/embed.go

    	if !fs.ValidPath(name) {
    		// The compiler should never emit a file with an invalid name,
    		// so this check is not strictly necessary (if name is invalid,
    		// we shouldn't find a match below), but it's a good backstop anyway.
    		return nil
    	}
    	if name == "." {
    		return dotFile
    	}
    	if f.files == nil {
    		return nil
    	}
    
    	// Binary search to find where name would be in the list,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:42:51 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/typeset.go

    	// position.
    
    	var seen objset
    	var allMethods []*Func
    	mpos := make(map[*Func]syntax.Pos) // method specification or method embedding position, for good error messages
    	addMethod := func(pos syntax.Pos, m *Func, explicit bool) {
    		switch other := seen.insert(m); {
    		case other == nil:
    			allMethods = append(allMethods, m)
    			mpos[m] = pos
    		case explicit:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/block.go

    	// Fatal if not BranchUnknown and len(Succs) > 2.
    	Likely BranchPrediction
    
    	// After flagalloc, records whether flags are live at the end of the block.
    	FlagsLiveAtEnd bool
    
    	// A block that would be good to align (according to the optimizer's guesses)
    	Hotness Hotness
    
    	// Subsequent blocks, if any. The number and order depend on the block kind.
    	Succs []Edge
    
    	// Inverse of successors.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. src/go/types/typeset.go

    	// position.
    
    	var seen objset
    	var allMethods []*Func
    	mpos := make(map[*Func]token.Pos) // method specification or method embedding position, for good error messages
    	addMethod := func(pos token.Pos, m *Func, explicit bool) {
    		switch other := seen.insert(m); {
    		case other == nil:
    			allMethods = append(allMethods, m)
    			mpos[m] = pos
    		case explicit:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. android/pom.xml

                    <!-- TODO(cpovirk): Enable NullArgumentForNonNullParameter for
                         prod code. It's disabled automatically for "test code"
                         (which is good: our tests have intentional violations), but
                         Error Prone doesn't know it's building test code unless we
                         pass -XepCompilingTestOnlyCode, and that argument needs to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. pom.xml

                    <!-- TODO(cpovirk): Enable NullArgumentForNonNullParameter for
                         prod code. It's disabled automatically for "test code"
                         (which is good: our tests have intentional violations), but
                         Error Prone doesn't know it's building test code unless we
                         pass -XepCompilingTestOnlyCode, and that argument needs to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. src/time/format.go

    // It is a regrettable historic error that the date uses the American convention
    // of putting the numerical month before the day.
    //
    // The example for Time.Format demonstrates the working of the layout string
    // in detail and is a good reference.
    //
    // Note that the [RFC822], [RFC850], and [RFC1123] formats should be applied
    // only to local times. Applying them to UTC times will use "UTC" as the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  8. pkg/apis/storage/validation/validation_test.go

    		MatchLabels: map[string]string{"foo": "bar"},
    	}
    
    	scenarios := map[string]struct {
    		isExpectedFailure bool
    		capacity          *storage.CSIStorageCapacity
    	}{
    		"good-capacity": {
    			capacity: &goodCapacity,
    		},
    		"missing-storage-class-name": {
    			isExpectedFailure: true,
    			capacity: func() *storage.CSIStorageCapacity {
    				capacity := goodCapacity
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/primitives/UnsignedBytes.java

           * non-final fields need to be reloaded inside the loop.
           *
           * And, no, defining (final or not) local variables out of the loop still isn't as good
           * because the null check on the theUnsafe object remains inside the loop and
           * BYTE_ARRAY_BASE_OFFSET doesn't get constant-folded.
           *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

            }
            sessionBuilder.setProxySelector(proxySelector);
    
            // Note: we do NOT use WagonTransportConfigurationKeys here as Maven Core does NOT depend on Wagon Transport
            // and this is okay and "good thing".
            DefaultAuthenticationSelector authSelector = new DefaultAuthenticationSelector();
            for (Server server : decrypted.getServers()) {
                AuthenticationBuilder authBuilder = new AuthenticationBuilder();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 27.5K bytes
    - Viewed (0)
Back to top