Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for mincore (0.81 sec)

  1. pilot/pkg/networking/core/cluster_tls_test.go

    				}
    			},
    		},
    	}
    
    	proxy := &model.Proxy{
    		Type:         model.SidecarProxy,
    		Metadata:     &model.NodeMetadata{},
    		IstioVersion: &model.IstioVersion{Major: 1, Minor: 5},
    	}
    	push := model.NewPushContext()
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    			cb := NewClusterBuilder(proxy, &model.PushRequest{Push: push}, model.DisabledCache{})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/route/route.go

    	// Start from Envoy 1.30(istio 1.22), cors filter will not forward preflight requests to upstream by default.
    	// Istio start support this feature from 1.23.
    	if proxy.VersionGreaterAndEqual(&model.IstioVersion{Major: 1, Minor: 23, Patch: -1}) {
    		out.ForwardNotMatchingPreflights = forwardNotMatchingPreflights(in)
    	}
    
    	// nolint: staticcheck
    	if in.AllowOrigins != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/lib.go

    		argv = append(argv, fmt.Sprintf("-Wl,--major-os-version=%d", PeMinimumTargetMajorVersion))
    		argv = append(argv, fmt.Sprintf("-Wl,--minor-os-version=%d", PeMinimumTargetMinorVersion))
    		argv = append(argv, fmt.Sprintf("-Wl,--major-subsystem-version=%d", PeMinimumTargetMajorVersion))
    		argv = append(argv, fmt.Sprintf("-Wl,--minor-subsystem-version=%d", PeMinimumTargetMinorVersion))
    	case objabi.Haix:
    		argv = append(argv, "-pthread")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/prove.go

    		OpOr64, OpOr32, OpOr16, OpOr8,
    		OpXor64, OpXor32, OpXor16, OpXor8:
    		return isNonNegative(v.Args[0]) && isNonNegative(v.Args[1])
    
    		// We could handle OpPhi here, but the improvements from doing
    		// so are very minor, and it is neither simple nor cheap.
    	}
    	return false
    }
    
    // isConstDelta returns non-nil if v is equivalent to w+delta (signed).
    func isConstDelta(v *Value) (w *Value, delta int64) {
    	cop := OpConst64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  5. src/runtime/traceback.go

    			// Note: this may perhaps keep return variables alive longer than
    			// strictly necessary, as we are using "function has a defer statement"
    			// as a proxy for "function actually deferred something". It seems
    			// to be a minor drawback. (We used to actually look through the
    			// gp._defer for a defer corresponding to this function, but that
    			// is hard to do with defer records on the stack during a stack copy.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/proxier.go

    	// then traffic will temporary be routed to ipvs during the probe and dropped.
    	// The later case is also and invalid configuration, but the traffic impact will be minor.
    	// This should not be a problem if users honors reserved addresses, but cut/paste
    	// from documentation is not unheard of, so the restriction to not use the TEST-NET-2 range
    	// must be documented.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    // lists should be merged or replaced.
    //
    // For more information, see the PATCH section of docs/devel/api-conventions.md.
    //
    // Some of the content of this package was borrowed with minor adaptations from
    // evanphx/json-patch and openshift/origin.
    
    const (
    	directiveMarker  = "$patch"
    	deleteDirective  = "delete"
    	replaceDirective = "replace"
    	mergeDirective   = "merge"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    The -t flag instructs get to consider modules needed to build tests of
    packages specified on the command line.
    
    The -u flag instructs get to update modules providing dependencies
    of packages named on the command line to use newer minor or patch
    releases when available.
    
    The -u=patch flag (not -u patch) also instructs get to update dependencies,
    but changes the default to select patch releases.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. cluster/gce/windows/k8s-node-setup.psm1

      $win_ver | Add-Member -MemberType NoteProperty -Name Minor -Value $(Get-ItemProperty -Path 'Registry::HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion' CurrentMinorVersionNumber).CurrentMinorVersionNumber
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/init.go

    			}
    
    			// We need the checksum for the go.mod file for pkg.mod
    			// so that we know what Go version to use to compile pkg.
    			// However, we didn't do so before Go 1.21, and the bug is relatively
    			// minor, so we maintain the previous (buggy) behavior in 'go mod tidy' to
    			// avoid introducing unnecessary churn.
    			if keepPkgGoModSums {
    				r := resolveReplacement(pkg.mod)
    				keep[modkey(r)] = true
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
Back to top