Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 75 for Reports (0.33 sec)

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

    			argv = append(argv, "-rdynamic")
    		} else {
    			var exports []string
    			ctxt.loader.ForAllCgoExportDynamic(func(s loader.Sym) {
    				exports = append(exports, "-Wl,--export-dynamic-symbol="+ctxt.loader.SymExtname(s))
    			})
    			sort.Strings(exports)
    			argv = append(argv, exports...)
    		}
    	}
    	if ctxt.HeadType == objabi.Haix {
    		fileName := xcoffCreateExportFile(ctxt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  2. src/bytes/bytes_test.go

    			actual = f(tc.in, tc.arg)
    		} else {
    			actual = fb(tc.in, []byte(tc.arg))
    		}
    		report := func(s []byte) string {
    			if s == nil {
    				return "nil"
    			} else {
    				return fmt.Sprintf("%q", s)
    			}
    		}
    		if len(actual) != 0 {
    			t.Errorf("%s(%s, %q) returned non-empty value", name, report(tc.in), tc.arg)
    		} else {
    			actualNil := actual == nil
    			outNil := tc.out == nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  3. src/crypto/x509/x509.go

    )
    
    var (
    	oidAuthorityInfoAccessOcsp    = asn1.ObjectIdentifier{1, 3, 6, 1, 5, 5, 7, 48, 1}
    	oidAuthorityInfoAccessIssuers = asn1.ObjectIdentifier{1, 3, 6, 1, 5, 5, 7, 48, 2}
    )
    
    // oidInExtensions reports whether an extension with the given oid exists in
    // extensions.
    func oidInExtensions(oid asn1.ObjectIdentifier, extensions []pkix.Extension) bool {
    	for _, e := range extensions {
    		if e.Id.Equal(oid) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.31.md

    - The feature gate "SkipReadOnlyValidationGCE" has been removed.  This gate has been active for 2 releases with no reports of issues (and was such a niche thing, we didn't expect any). ([#124210](https://github.com/kubernetes/kubernetes/pull/124210),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

            importDependencyManagement(resultModel, request, problems, imports);
    
            // dependency management injection
            dependencyManagementInjector.injectManagement(resultModel, request, problems);
    
            resultModel.update(modelNormalizer.injectDefaultValues(resultModel.getDelegate(), request, problems));
    
            if (request.isProcessPlugins()) {
                // reports configuration
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/init.go

    		// It's a bit of a peculiar thing to disallow but quite mysterious
    		// when it happens. See golang.org/issue/26708.
    		return ""
    	}
    	return filepath.Join(modRoot, "go.mod")
    }
    
    // Enabled reports whether modules are (or must be) enabled.
    // If modules are enabled but there is no main module, Enabled returns true
    // and then the first use of module information will call die
    // (usually through MustModRoot).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_messages.go

    func addUint64(b *cryptobyte.Builder, v uint64) {
    	b.AddUint32(uint32(v >> 32))
    	b.AddUint32(uint32(v))
    }
    
    // readUint64 decodes a big-endian, 64-bit value into out and advances over it.
    // It reports whether the read was successful.
    func readUint64(s *cryptobyte.String, out *uint64) bool {
    	var hi, lo uint32
    	if !s.ReadUint32(&hi) || !s.ReadUint32(&lo) {
    		return false
    	}
    	*out = uint64(hi)<<32 | uint64(lo)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. pkg/apis/admissionregistration/validation/validation.go

    	}
    
    	return allErrors
    }
    
    type groupVersion struct {
    	Group   string
    	Version string
    }
    
    // parseGroupVersion turns "group/version" string into a groupVersion struct. It reports error
    // if it cannot parse the string.
    func parseGroupVersion(gv string) (groupVersion, error) {
    	if (len(gv) == 0) || (gv == "/") {
    		return groupVersion{}, nil
    	}
    
    	switch strings.Count(gv, "/") {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  9. .bazelrc

    build:linux_arm64 --copt="-mtune=generic" --copt="-march=armv8-a" --copt="-O3"
    
    
    # On Windows, `__cplusplus` is wrongly defined without this switch
    # See https://devblogs.microsoft.com/cppblog/msvc-now-correctly-reports-__cplusplus/
    build:windows --copt=/Zc:__cplusplus
    build:windows --host_copt=/Zc:__cplusplus
    
    # Tensorflow uses M_* math constants that only get defined by MSVC headers if
    # _USE_MATH_DEFINES is defined.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	labeledInfo := getContainerInfoFromLabels(status.Labels)
    	var cStatusResources *kubecontainer.ContainerResources
    	if utilfeature.DefaultFeatureGate.Enabled(features.InPlacePodVerticalScaling) {
    		// If runtime reports cpu & memory resources info, add it to container status
    		cStatusResources = toKubeContainerResources(status.Resources)
    	}
    
    	// Keep backwards compatibility to older runtimes, status.ImageId has been added in v1.30
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
Back to top