Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 55 for COMMENT (0.32 sec)

  1. src/cmd/go/internal/modload/load.go

    				}
    				if mg, err := rs.Graph(ctx); err != nil {
    					return false, err
    				} else if _, ok := mg.RequiredBy(dep.mod); !ok {
    					// dep.mod is not an explicit dependency, but needs to be.
    					// See comment on error returned below.
    					pkg.err = &DirectImportFromImplicitDependencyError{
    						ImporterPath: pkg.path,
    						ImportedPath: dep.path,
    						Module:       dep.mod,
    					}
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/deadness_analysis.cc

    // Instead we want {S,&,X} to denote the infinite list [S, S&X,
    // S&X&X',S&X&X'&X'', ...] where X, X', X'' are predicates that assert Cond is
    // true on iteration 0, 1, 2 respectively.  This is made more precise in the
    // comment on the AndRecurrence class.
    //
    // The general algorithm that deals with cycles does two topological-order
    // iterations over the graph.  On the first iteration it assigns a symbolic
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    			case 'e':
    				kind = "enum"
    			}
    			ret = &ElaboratedType{Kind: kind, Type: ret}
    			break
    		}
    
    		ret = st.templateParam()
    		if len(st.str) > 0 && st.str[0] == 'I' {
    			// See the function comment to explain this.
    			if !isCast {
    				st.subs.add(ret)
    				args := st.templateArgs()
    				ret = &Template{Name: ret, Args: args}
    			} else {
    				ret = st.demangleCastTemplateArgs(ret, true)
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

            where:
            keyRingFormat       | extension | header
            'GPG'               | 'gpg'     | null
            'ASCII'             | 'keys'    | null
            'ASCII with header' | 'keys'    | 'some comment showing we can have arbitrary text'
        }
    
        def "by default, prioritizes gpg format over ascii-armored when #hint"() {
            // key will not be published on the server fixture but available locally
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_server_test.go

    	if err != nil {
    		t.Fatalf("handshake failed: %s", err)
    	}
    	if state.DidResume {
    		t.Fatalf("handshake resumed at a higher version")
    	}
    }
    
    // Note: see comment in handshake_test.go for details of how the reference
    // tests work.
    
    // serverTest represents a test of the TLS server handshake against a reference
    // implementation.
    type serverTest struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  6. src/strings/strings_test.go

    		t.Error("ToLower(lower) consistency fail")
    	}
    	/*
    		  These fail because of non-one-to-oneness of the data, such as multiple
    		  upper case 'I' mapping to 'i'.  We comment them out but keep them for
    		  interest.
    		  For instance: CAPITAL LETTER I WITH DOT ABOVE:
    			unicode.ToUpper(unicode.ToLower('\u0130')) != '\u0130'
    
    		if !equal("ToUpper(lower)", ToUpper(lower), upper, t) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  7. src/cmd/dist/build.go

    		// Also include $DIST_UNMODIFIED_PATH with the original $PATH
    		// for the internal needs of "dist banner", along with export
    		// so that it reaches the dist process. See its comment below.
    		var exportFormat string
    		if !*windows && !*plan9 {
    			exportFormat = "export " + format
    		} else {
    			exportFormat = format
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/runtime/framework.go

    	return nil
    }
    
    func shouldHaveEnqueueExtensions(p framework.Plugin) bool {
    	switch p.(type) {
    	// Only PreEnqueue, PreFilter, Filter, Reserve, and Permit plugins can (should) have EnqueueExtensions.
    	// See the comment of EnqueueExtensions for more detailed reason here.
    	case framework.PreEnqueuePlugin, framework.PreFilterPlugin, framework.FilterPlugin, framework.ReservePlugin, framework.PermitPlugin:
    		return true
    	}
    	return false
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  9. src/net/url/url_test.go

    		&URL{
    			Scheme: "file",
    			Host:   "",
    			Path:   "/home/adg/rabbits",
    		},
    		"file:///home/adg/rabbits",
    	},
    	// "Windows" paths are no exception to the rule.
    	// See golang.org/issue/6027, especially comment #9.
    	{
    		"file:///C:/FooBar/Baz.txt",
    		&URL{
    			Scheme: "file",
    			Host:   "",
    			Path:   "/C:/FooBar/Baz.txt",
    		},
    		"file:///C:/FooBar/Baz.txt",
    	},
    	// case-insensitive scheme
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  10. src/runtime/mprof.go

    // Thus, reporting the call stacks of runtime-internal lock contention is
    // guarded by GODEBUG for now. Set GODEBUG=runtimecontentionstacks=1 to enable.
    //
    // TODO(rhysh): plumb through the delay duration, remove GODEBUG, update comment
    //
    // The M will track this by storing a pointer to the lock; lock/unlock pairs for
    // runtime-internal locks are always on the same M.
    //
    // Together, that demands several steps for recording contention. First, when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top