Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 95 for north (0.11 sec)

  1. src/internal/zstd/testdata/1890a371.gettysburg.txt-100x.zst

    1890a371.gettysburg.txt-100x.zst Four score and seven years ago our fathers brought forth on this continent, a new nation, conceived in Liberty, and dedicated to the proposition that all men are created equal. Now we are engaged in a great Civil War, testing whether that nation, or any nation so conceived and so dedicated, can long endure. We are met on a great battle-field of that war. We have come to dedicate a portion of that field, as a final resting place for those who here gave their lives...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 14:35:13 UTC 2023
    - 826 bytes
    - Viewed (0)
  2. misc/cgo/gmp/fib.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build ignore
    
    // Compute Fibonacci numbers with two goroutines
    // that pass integers back and forth.  No actual
    // concurrency, just threads and synchronization
    // and foreign code on multiple pthreads.
    
    package main
    
    import (
    	big "."
    	"runtime"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 10 22:32:35 UTC 2023
    - 919 bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/teststdio/testdata/fib.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build test_run
    
    // Compute Fibonacci numbers with two goroutines
    // that pass integers back and forth.  No actual
    // concurrency, just threads and synchronization
    // and foreign code on multiple pthreads.
    
    package main
    
    import (
    	"runtime"
    	"strconv"
    
    	"cgostdio/stdio"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 965 bytes
    - Viewed (0)
  4. src/log/slog/internal/buffer/buffer_test.go

    	if race.Enabled {
    		t.Skip("skipping test in race mode")
    	}
    	testenv.SkipIfOptimizationOff(t)
    	got := int(testing.AllocsPerRun(5, func() {
    		b := New()
    		defer b.Free()
    		b.WriteString("not 1K worth of bytes")
    	}))
    	if got != 0 {
    		t.Errorf("got %d allocs, want 0", got)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 16:48:35 UTC 2023
    - 776 bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/KotlinGrammarTest.kt

            assertAnnotationConsumed("""@Suppress ( "unused_variable" )""")
    
            assertAnnotationConsumed("""@DisableCachingByDefault(because="Not worth caching")""")
            assertAnnotationConsumed("""@DisableCachingByDefault ( because = "Not worth caching" )""")
    
            assertAnnotationConsumed("""@Deprecated(message="Use rem(other) instead",replaceWith=ReplaceWith("rem(other)"))""")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. src/internal/types/testdata/fixedbugs/issue49276.go

    package p
    
    import "unsafe"
    
    type S /* ERROR "invalid recursive type S" */ struct {
    	_ [unsafe.Sizeof(s)]byte
    }
    
    var s S
    
    // Since f is a pointer, this case could be valid.
    // But it's pathological and not worth the expense.
    type T struct {
    	f *[unsafe.Sizeof(T /* ERROR "invalid recursive type" */ {})]int
    }
    
    // a mutually recursive case using unsafe.Sizeof
    type (
    	A1 struct {
    		_ [unsafe.Sizeof(B1{})]int
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 932 bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/DependencyReportTask.java

    /**
     * Displays the dependency tree for a project. An instance of this type is used when you
     * execute the {@code dependencies} task from the command-line.
     */
    @DisableCachingByDefault(because = "Not worth caching")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 1008 bytes
    - Viewed (0)
  8. platforms/jvm/language-jvm/src/main/java/org/gradle/language/jvm/tasks/ProcessResources.java

    /**
     * Copies resources from their source to their target directory, potentially processing them.
     * Makes sure no stale resources remain in the target directory.
     */
    @DisableCachingByDefault(because = "Not worth caching")
    public abstract class ProcessResources extends Copy {
    
        @Override
        protected void copy() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. pkg/controller/serviceaccount/config/v1alpha1/conversion.go

    package v1alpha1
    
    import (
    	"k8s.io/apimachinery/pkg/conversion"
    	"k8s.io/kube-controller-manager/config/v1alpha1"
    	"k8s.io/kubernetes/pkg/controller/serviceaccount/config"
    )
    
    // Important! The public back-and-forth conversion functions for the types in this package
    // with SAControllerConfiguration types need to be manually exposed like this in order for
    // other packages that reference this package to be able to call these conversion functions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 24 23:20:17 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/bundling/Jar.java

     */
    
    package org.gradle.api.tasks.bundling;
    
    import groovy.lang.Closure;
    import org.gradle.work.DisableCachingByDefault;
    
    /**
     * Assembles a JAR archive.
     */
    @DisableCachingByDefault(because = "Not worth caching")
    public abstract class Jar extends org.gradle.jvm.tasks.Jar {
        @Override
        public Jar manifest(Closure<?> configureClosure) {
            super.manifest(configureClosure);
            return this;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top