Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 208 for course (0.12 sec)

  1. src/cmd/go/internal/work/buildid.go

    // To avoid this problem, for releases we use the release version string instead
    // of the compiler binary's content hash. This assumes that all compilers built
    // on all different systems are semantically equivalent, which is of course only true
    // modulo bugs. (Producing the exact same executables also requires that the different
    // build setups agree on details like $GOROOT and file name paths, but at least the
    // tool IDs do not make it impossible.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/ipset/ipset_test.go

    		},
    		{ // case[3]
    			portRange: DefaultPortRange,
    			expectErr: false,
    			desc:      "default port range is valid, of course",
    		},
    		{ // case[4]
    			portRange: "12",
    			expectErr: true,
    			desc:      "a single number is invalid",
    		},
    		{ // case[5]
    			portRange: "1-",
    			expectErr: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  3. src/runtime/mgcpacer_test.go

    		cycle++
    		if cycle == period {
    			cycle = 0
    		}
    		return math.Sin(p) * amp
    	}
    }
    
    // ramp returns a stream that moves from zero to height
    // over the course of length steps.
    func ramp(height float64, length int) float64Stream {
    	var cycle int
    	return func() float64 {
    		h := height * float64(cycle) / float64(length)
    		if cycle < length {
    			cycle++
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 13:53:21 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  4. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    The source code for a work means the preferred form of the work for
    making modifications to it. For an executable work, complete source code
    means all the source code for all modules it contains, plus any
    associated interface definition files, plus the scripts used to control
    compilation and installation of the executable. However, as a special
    exception, the source code distributed need not include anything that is
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  5. src/runtime/time.go

    			})
    			t.lock()
    		}
    	}
    }
    
    // stop stops the timer t. It may be on some other P, so we can't
    // actually remove it from the timers heap. We can only mark it as stopped.
    // It will be removed in due course by the P whose heap it is on.
    // Reports whether the timer was stopped before it was run.
    func (t *timer) stop() bool {
    	async := debug.asynctimerchan.Load() != 0
    	if !async && t.isChan {
    		lock(&t.sendLock)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  6. src/cmd/link/link_test.go

    and Jarndyce, without knowing how or why; whole families have inherited legendary hatreds with the suit. The little plaintiff or defendant, who was promised a new rocking-horse when Jarndyce and Jarndyce should be settled, has grown up, possessed himself of a real horse, and trotted away into the other world. Fair wards of court have faded into mothers and grandmothers; a long procession of Chancellors has come in and gone out; the legion of bills in the suit have been transformed into mere bills...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  7. src/cmd/cgo/doc.go

    not be compiled separately, but, if these header files are changed,
    the package (including its non-Go source files) will be recompiled.
    Note that changes to files in other directories do not cause the package
    to be recompiled, so all non-Go source code for the package should be
    stored in the package directory, not in subdirectories.
    The default C and C++ compilers may be changed by the CC and CXX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/DefaultIsolatableFactoryTest.groovy

        }
    
        def "can coerce integer value"() {
            expect:
            def original = 123
            def isolated = isolatableFactory.isolate(original)
            isolated.coerce(Integer).is(original)
            isolated.coerce(Number).is(original)
            isolated.coerce(Long) == null
            isolated.coerce(Short) == null
            isolated.coerce(Byte) == null
            isolated.coerce(String) == null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 17K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    }
    
    // WebListData holds the data needed to generate HTML source code listing.
    type WebListData struct {
    	Total string
    	Files []WebListFile
    }
    
    // WebListFile holds the per-file information for HTML source code listing.
    type WebListFile struct {
    	Funcs []WebListFunc
    }
    
    // WebListFunc holds the per-function information for HTML source code listing.
    type WebListFunc struct {
    	Name       string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/attributes/DefaultImmutableAttributes.java

                return ((Enum<?>) get()).name();
            }
            return null;
        }
    
        @Nullable
        private <S> S coerce(Class<S> type) {
            if (value != null) {
                return value.coerce(type);
            }
            return null;
        }
    
        @Override
        public <S> S coerce(Attribute<S> otherAttribute) {
            S s = Cast.uncheckedCast(coercionCache.get(otherAttribute));
            if (s == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 12:57:50 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top