Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 706 for light (1.89 sec)

  1. pkg/test/framework/components/echo/config.go

    		!c.ZTunnelCaptured() &&
    		!c.DualStack
    }
    
    // WaypointClient means the client supports HBONE and does zTunnel redirection.
    // Currently, only zTunnel captured sources do this. Eventually this might be enabled
    // for ingress and/or sidecars.
    func (c Config) WaypointClient() bool {
    	return c.ZTunnelCaptured() && !c.IsUncaptured()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. test/codegen/comparisons.go

    	if e^d == 0 {
    		return 1
    	}
    	return 0
    }
    
    // The following CmpToZero_ex* check that cmp|cmn with bmi|bpl are generated for
    // 'comparing to zero' expressions
    
    // var + const
    // 'x-const' might be canonicalized to 'x+(-const)', so we check both
    // CMN and CMP for subtraction expressions to make the pattern robust.
    func CmpToZero_ex1(a int64, e int32) int {
    	// arm64:`CMN`,-`ADD`,`(BMI|BPL)`
    	if a+3 < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/reconciler/reconciler.go

    				// This function is also called during executing the volume detach operation in operation_generoator.
    				// It is needed here too because DetachVolume call might fail before executing the actual operation in operation_executor (e.g., cannot find volume plugin etc.)
    				rc.actualStateOfWorld.AddVolumeToReportAsAttached(logger, attachedVolume.VolumeName, attachedVolume.NodeName)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 21:02:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    	// Once this grace period elapses, the apiserver will no longer
    	// wait for any active watch request(s) in flight to drain, it will
    	// proceed to the next step in the graceful server shutdown process.
    	// If set to a positive value, the apiserver will keep track of the
    	// number of active watch request(s) in flight and during shutdown
    	// it will wait, at most, for the specified duration and allow these
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/expr.go

    func walkLogical(n *ir.LogicalExpr, init *ir.Nodes) ir.Node {
    	n.X = walkExpr(n.X, init)
    
    	// cannot put side effects from n.Right on init,
    	// because they cannot run before n.Left is checked.
    	// save elsewhere and store on the eventual n.Right.
    	var ll ir.Nodes
    
    	n.Y = walkExpr(n.Y, &ll)
    	n.Y = ir.InitExpr(ll, n.Y)
    	return n
    }
    
    // walkSend walks an OSEND node.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/op.go

    	if !x.canAdd64(off) {
    		panic("invalid ValAndOff.addOffset64")
    	}
    	return makeValAndOff(x.Val(), x.Off()+int32(off))
    }
    
    // int128 is a type that stores a 128-bit constant.
    // The only allowed constant right now is 0, so we can cheat quite a bit.
    type int128 int64
    
    type BoundsKind uint8
    
    const (
    	BoundsIndex       BoundsKind = iota // indexing operation, 0 <= idx < len failed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/wasm/ssa.go

       to the place in the function indicated by the block ID. The block
       ID is provided to the function as the sole Wasm argument.
    
       Block IDs do not encode every possible PC. They only encode places
       in the function where it might be suspended. Typically these places
       are call sites.
    
       Sometimes we encode the function ID and block ID separately. When
       recorded together as a single integer, we use the value F<<16+B.
    
       Threads:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  8. pkg/controller/resourcequota/resource_quota_controller.go

    		if intersection := evaluator.MatchingResources(resourceQuotaResources); len(intersection) > 0 {
    			// TODO: make this support targeted replenishment to a specific kind, right now it does a full recalc on that quota.
    			rq.enqueueResourceQuota(logger, resourceQuota)
    		}
    	}
    }
    
    // Sync periodically resyncs the controller when new resources are observed from discovery.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics_test.go

    		},
    		{
    			desc:        "PATCH should be transformed to APPLY with the right content type",
    			initialVerb: "PATCH",
    			request: &http.Request{
    				Header: http.Header{
    					"Content-Type": []string{"application/apply-patch+yaml"},
    				},
    			},
    			expectedVerb: "APPLY",
    		},
    		{
    			desc:         "PATCH shouldn't be transformed to APPLY without the right content type",
    			initialVerb:  "PATCH",
    			request:      nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  10. src/encoding/gob/decode.go

    	// Read the concrete value.
    	v := allocValue(typ)
    	dec.decodeValue(concreteId, v)
    	if dec.err != nil {
    		error_(dec.err)
    	}
    	// Assign the concrete value to the interface.
    	// Tread carefully; it might not satisfy the interface.
    	if !typ.AssignableTo(ityp) {
    		errorf("%s is not assignable to type %s", typ, ityp)
    	}
    	// Copy the interface value to the target.
    	value.Set(v)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
Back to top