Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 297 for gomod (0.26 sec)

  1. src/internal/fmtsort/sort.go

    // If the types differ, it returns -1.
    // See the comment on Sort for the comparison rules.
    func compare(aVal, bVal reflect.Value) int {
    	aType, bType := aVal.Type(), bVal.Type()
    	if aType != bType {
    		return -1 // No good answer possible, but don't return 0: they're not equal.
    	}
    	switch aVal.Kind() {
    	case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
    		return cmp.Compare(aVal.Int(), bVal.Int())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:31:45 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stdversion/stdversion.go

    							obj.Pkg().Name(), obj.Name(), minVersion, noun, fileVersion)
    					}
    				}
    			}
    		}
    	})
    	return nil, nil
    }
    
    // Reduced from x/tools/gopls/internal/golang/util.go. Good enough for now.
    // TODO(adonovan): use ast.IsGenerated in go1.21.
    func isGenerated(f *ast.File) bool {
    	for _, group := range f.Comments {
    		for _, comment := range group.List {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. tests/binary/binaries_test.go

    			t.Fatalf("Binary size of %dmb was greater than max allowed size %dmb", got, tt.maxMb)
    		}
    		if got < tt.minMb {
    			t.Fatalf("Binary size of %dmb was smaller than min allowed size %dmb. This is very likely a good thing, "+
    				"indicating the binary size has decreased. The test will fail to ensure you update the test thresholds to ensure "+
    				"the improvements are 'locked in'.", got, tt.minMb)
    		}
    	})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/scopeProvider/TestScopeRenderer.kt

     *
     * Note: Many scopes wouldn't work correctly if the contained name sets were broken, as these names are often the basis for the search.
     * But this is not a good reason for a lack of tests, as the scope implementation is not forced to use these name sets internally, and
     * the contained names are still part of the public API.
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. src/runtime/race_ppc64le.s

    racecallatomic_data:
    	MOVD	runtimeĀ·racedatastart(SB), R9
    	CMP	R7, R9
    	BLT	racecallatomic_ignore
    	MOVD	runtimeĀ·racedataend(SB), R9
    	CMP	R7, R9
    	BGE	racecallatomic_ignore
    racecallatomic_ok:
    	// Addr is within the good range, call the atomic function.
    	MOVD    runtimeĀ·tls_g(SB), R10
    	MOVD    0(R10), g
    	MOVD    g_racectx(g), R3        // goroutine racectx aka *ThreadState
    	MOVD	R8, R5			// pc is the function called
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  6. pkg/controller/nodeipam/ipam/cidr_allocator.go

    	// IPAMFromCloudAllocatorType uses the ipam controller sync'ing the node
    	// CIDR range allocations from the cloud to the cluster.
    	IPAMFromCloudAllocatorType = "IPAMFromCloud"
    )
    
    // TODO: figure out the good setting for those constants.
    const (
    	// The amount of time the nodecontroller polls on the list nodes endpoint.
    	apiserverStartupGracePeriod = 10 * time.Minute
    
    	// The no. of NodeSpec updates NC can process concurrently.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:57 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/split_merged_operands.cc

    // (typical zero-initialized), but their values will be changed. So we cannot
    // just merge those values.
    //
    // This pass is more like short-term workaround since we don't have a good
    // variable representation right now.
    //
    // This pass will duplicate input values for those variable tensor inputs.
    
    namespace mlir {
    namespace TFL {
    namespace {
    #define GEN_PASS_DEF_SPLITMERGEDOPERANDSPASS
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. src/runtime/race_amd64.s

    	JAE	racecallatomic_ignore
    racecallatomic_ok:
    	// Addr is within the good range, call the atomic function.
    	MOVQ	g_racectx(R14), RARG0	// goroutine context
    	MOVQ	8(SP), RARG1	// caller pc
    	MOVQ	(SP), RARG2	// pc
    	LEAQ	16(SP), RARG3	// arguments
    	JMP	racecall<>(SB)	// does not return
    racecallatomic_ignore:
    	// Addr is outside the good range.
    	// Call __tsan_go_ignore_sync_begin to ignore synchronization during the atomic op.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  9. src/unique/handle.go

    func Make[T comparable](value T) Handle[T] {
    	// Find the map for type T.
    	typ := abi.TypeOf(value)
    	ma, ok := uniqueMaps.Load(typ)
    	if !ok {
    		// This is a good time to initialize cleanup, since we must go through
    		// this path on the first use of Make, and it's not on the hot path.
    		setupMake.Do(registerCleanup)
    		ma = addUniqueMap[T](typ)
    	}
    	m := ma.(*uniqueMap[T])
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/bug/bug.go

    `
    const bugFooter = `### What did you do?
    
    <!--
    If possible, provide a recipe for reproducing the error.
    A complete runnable program is good.
    A link on play.golang.org is best.
    -->
    
    
    
    ### What did you expect to see?
    
    
    
    ### What did you see instead?
    
    `
    
    func printGoVersion(w io.Writer) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top