Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 6,658 for makeWE (0.11 sec)

  1. src/cmd/link/internal/ld/macho_update_uuid.go

    // particular) appear to compute the UUID based not just on the
    // content of the object files being linked but also on things like
    // the timestamps/paths of the objects; this makes it
    // difficult/impossible to support reproducible builds. Since we try
    // hard to maintain build reproducibility for Go, the APIs here
    // compute a new UUID (based on the Go build ID) and write it to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. src/hash/crc32/crc32.go

    	// https://dx.doi.org/10.1109/DSN.2002.1028931
    	Koopman = 0xeb31d82e
    )
    
    // Table is a 256-word table representing the polynomial for efficient processing.
    type Table [256]uint32
    
    // This file makes use of functions implemented in architecture-specific files.
    // The interface that they implement is as follows:
    //
    //    // archAvailableIEEE reports whether an architecture-specific CRC32-IEEE
    //    // algorithm is available.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_use_cases.adoc

    There are for example annotation processors that do not clean up stale files in the corresponding classes/resources directories.
    The cache is a great forcing function to fix these problems, which will also make your incremental builds much more reliable.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/discovery/file/file.go

    	"k8s.io/klog/v2"
    
    	"k8s.io/kubernetes/cmd/kubeadm/app/constants"
    	kubeconfigutil "k8s.io/kubernetes/cmd/kubeadm/app/util/kubeconfig"
    )
    
    // RetrieveValidatedConfigInfo connects to the API Server and makes sure it can talk
    // securely to the API Server using the provided CA cert and
    // optionally refreshes the cluster-info information from the cluster-info ConfigMap
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:55 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/finisher/finisher.go

    	// (child goroutine executing ResultFunc) to send a result after the request.
    	// had timed out.
    	postTimeoutLoggerWait = 5 * time.Minute
    )
    
    // FinishRequest makes a given ResultFunc asynchronous and handles errors returned by the response.
    func FinishRequest(ctx context.Context, fn ResultFunc) (runtime.Object, error) {
    	return finishRequest(ctx, fn, postTimeoutLoggerWait, logPostTimeoutResult)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 14:20:33 UTC 2021
    - 6K bytes
    - Viewed (0)
  6. src/net/tcpsock_test.go

    		t.Fatal(err)
    	}
    	defer r.Close()
    
    	errc2 := make(chan error, 1)
    	defer func() {
    		if err := <-errc2; err != nil {
    			t.Error(err)
    		}
    	}()
    
    	defer w.Close()
    
    	go func() {
    		_, err := io.Copy(c, r)
    		errc2 <- err
    	}()
    
    	// Split write into 2 packets. That makes Windows TransmitFile
    	// drop second packet.
    	packet := make([]byte, 1)
    	_, err = w.Write(packet)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/core-plugins/pmd_plugin.adoc

    ====
    
    [NOTE]
    ====
    This configuration is internal to PMD and is not linked to <<performance#parallel_execution,the number of workers>> used by Gradle.
    It means that you have to pay attention to the value entered here and make sure it still makes sense in a multi project build.
    This is because parallel Gradle task execution could result in different PMD tasks from different projects running in parallel.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/dryrun/dryrun.go

    // Useful for things like loading a file from /tmp/ but saying to the user "Would write file foo to /etc/kubernetes/..."
    type FileToPrint struct {
    	RealPath  string
    	PrintPath string
    }
    
    // NewFileToPrint makes a new instance of FileToPrint with the specified arguments
    func NewFileToPrint(realPath, printPath string) FileToPrint {
    	return FileToPrint{
    		RealPath:  realPath,
    		PrintPath: printPath,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/api_test.go

    		{`package p13
    
    		var (
    		    v = t.m()
    		    t = makeT(0)
    		)
    
    		type T struct{}
    
    		func (T) m() int { return 0 }
    
    		func makeT(n int) T {
    		    if n > 0 {
    		        return makeT(n-1)
    		    }
    		    return T{}
    		}`, []string{
    			"t = makeT(0)", "v = t.m()",
    		}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/fixtures/resources.go

    	}
    	for _, g := range groupResource.APIResources {
    		if g.Name == crd.Spec.Names.Plural {
    			return true, nil
    		}
    	}
    	return false, nil
    }
    
    // waitForCRDReadyWatchUnsafe creates the CRD and makes sure
    // the apiextension apiserver has installed the CRD. But it's not safe to watch
    // the created CR. Please call CreateCRDUsingRemovedAPI if you need to
    // watch the CR.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 19 02:01:40 UTC 2021
    - 21.4K bytes
    - Viewed (0)
Back to top