Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 37 for homes (0.04 sec)

  1. pkg/controller/podautoscaler/horizontal.go

    	"k8s.io/kubernetes/pkg/controller/util/selectors"
    )
    
    var (
    	scaleUpLimitFactor  = 2.0
    	scaleUpLimitMinimum = 4.0
    )
    
    var (
    	// errSpec is used to determine if the error comes from the spec of HPA object in reconcileAutoscaler.
    	// All such errors should have this error as a root error so that the upstream function can distinguish spec errors from internal errors.
    	// e.g., fmt.Errorf("invalid spec%w", errSpec)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

       (HasOneUse $sub),
       (HasOneUse $max)]>;
    
    // Convert softmax(x-reshape(maximum(max(x), -inf))) into softmax(x) as the softmax op already deals
    // with the max normalization. This comes from upstream Jax (https://github.com/google/jax/pull/15677)
    def FoldNormalizationIntoSoftmaxJaxWithAxisMinus1 : Pat<
      (TFL_SoftmaxOp
        (TFL_SubOp:$sub $input,
        (TFL_ReshapeOp:$reshape
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  3. src/crypto/tls/tls_test.go

    			SupportedCurves:   []CurveID{CurveP256},
    			SupportedPoints:   []uint8{pointFormatUncompressed},
    			SignatureSchemes:  nil,
    			SupportedVersions: []uint16{VersionTLS12},
    		}, ""}, // TLS 1.2 comes with default signature schemes.
    		{ecdsaCert, &ClientHelloInfo{
    			CipherSuites:      []uint16{TLS_RSA_WITH_AES_128_GCM_SHA256},
    			SupportedCurves:   []CurveID{CurveP256},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  4. src/runtime/mgcmark.go

    		throw("nwait > work.nprocs")
    	}
    
    	// gcDrainN requires the caller to be preemptible.
    	casGToWaitingForGC(gp, _Grunning, waitReasonGCAssistMarking)
    
    	// drain own cached work first in the hopes that it
    	// will be more cache friendly.
    	gcw := &getg().m.p.ptr().gcw
    	workDone := gcDrainN(gcw, scanWork)
    
    	casgstatus(gp, _Gwaiting, _Grunning)
    
    	// Record that we did this much scan work.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  5. src/runtime/mprof.go

    }
    
    // lockTimer assists with profiling contention on runtime-internal locks.
    //
    // There are several steps between the time that an M experiences contention and
    // when that contention may be added to the profile. This comes from our
    // constraints: We need to keep the critical section of each lock small,
    // especially when those locks are contended. The reporting code cannot acquire
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        val ping = peer.takeFrame()
        assertThat(ping.type).isEqualTo(Http2.TYPE_PING)
      }
    
      @Test fun serverWritesTrailersWithData() {
        // We buffer some outbound data and headers and confirm that the END_STREAM flag comes with the
        // headers (and not with the data).
    
        // Write the mocking script. for the client
        peer.setClient(true)
    
        // Write the mocking script.
        peer.sendFrame().settings(Settings())
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "LoweredRound32F", argLength: 1, reg: fp11, resultInArg0: true, zeroWidth: true},
    		{name: "LoweredRound64F", argLength: 1, reg: fp11, resultInArg0: true, zeroWidth: true},
    
    		// 3-operand, the addend comes first
    		{name: "FMADDS", argLength: 3, reg: fp31, asm: "FMADDS"},   // +arg0 + (arg1 * arg2)
    		{name: "FMADDD", argLength: 3, reg: fp31, asm: "FMADDD"},   // +arg0 + (arg1 * arg2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/buildlist.go

    		// -mod=readonly, which in turn implies no new requirements. The code path
    		// that would result in add being non-empty returns an error before it
    		// reaches this point: The set of modules to add comes from
    		// resolveMissingImports, which in turn resolves each package by calling
    		// queryImport. But queryImport explicitly checks for -mod=readonly, and
    		// return an error.
    		panic("add is not empty")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ppc64/ssa.go

    		case obj.NAME_EXTERN, obj.NAME_STATIC:
    			// Special case for a rule combines the bytes of gostring.
    			// The v alignment might seem OK, but we don't want to load it
    			// using an offset because relocation comes later.
    			genAddr = strings.HasPrefix(fromAddr.Sym.Name, "go:string") || v.Type.Alignment()%4 != 0 || fromAddr.Offset%4 != 0
    		default:
    			genAddr = fromAddr.Offset%4 != 0
    		}
    		if genAddr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. src/runtime/mbitmap.go

    	if typ == nil || typ.Kind_&abi.KindGCProg != 0 {
    		return
    	}
    	if typ.Kind_&abi.KindMask == abi.Interface {
    		// Interfaces are unfortunately inconsistently handled
    		// when it comes to the type pointer, so it's easy to
    		// produce a lot of false positives here.
    		return
    	}
    	tp0 := s.typePointersOfType(typ, addr)
    	tp1 := s.typePointersOf(addr, size)
    	failed := false
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
Back to top