Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 241 for IMMEDIATE (0.1 sec)

  1. doc/next/5-toolchain.md

    this check, for debugging and experimenting purposes.
    
    <!-- CL 473495 -->
    When building a dynamically linked ELF binary (including PIE binary), the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/riscv/obj.go

    func signExtend(val int64, bit uint) int64 {
    	return val << (64 - bit) >> (64 - bit)
    }
    
    // Split32BitImmediate splits a signed 32-bit immediate into a signed 20-bit
    // upper immediate and a signed 12-bit lower immediate to be added to the upper
    // result. For example, high may be used in LUI and low in a following ADDI to
    // generate a full 32-bit constant.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/volumebinding/volume_binding.go

    				return hasPVC, err
    			}
    		}
    	}
    	return hasPVC, nil
    }
    
    // PreFilter invoked at the prefilter extension point to check if pod has all
    // immediate PVCs bound. If not all immediate PVCs are bound, an
    // UnschedulableAndUnresolvable is returned.
    func (pl *VolumeBinding) PreFilter(ctx context.Context, state *framework.CycleState, pod *v1.Pod) (*framework.PreFilterResult, *framework.Status) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/multicluster_test.go

    	return err
    }
    
    func deleteMultiClusterSecret(k8s kube.Client, sname string) error {
    	var immediate int64
    
    	return k8s.Kube().CoreV1().Secrets(testSecretNameSpace).Delete(
    		context.TODO(),
    		sname, metav1.DeleteOptions{GracePeriodSeconds: &immediate})
    }
    
    func verifyControllers(t *testing.T, m *Multicluster, expectedControllerCount int, timeoutName string) {
    	t.Helper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. .github/workflows/codeql-analysis.yml

        steps:
        - name: Checkout repository
          uses: actions/checkout@v2
          with:
            # We must fetch at least the immediate parents so that if this is
            # a pull request then we can checkout the head.
            fetch-depth: 2
    
        # If this run was triggered by a pull request event, then checkout
    Registered: Wed Jun 12 08:29:43 UTC 2024
    - Last Modified: Fri Oct 02 13:24:14 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ir/visit.go

    // DoChildren calls do(x) on each of n's non-nil child nodes x.
    // If any call returns true, DoChildren stops and returns true.
    // Otherwise, DoChildren returns false.
    //
    // Note that DoChildren(n, do) only calls do(x) for n's immediate children.
    // If x's children should be processed, then do(x) must call DoChildren(x, do).
    //
    // DoChildren allows constructing general traversals of the IR graph
    // that can stop early if needed. The most general usage is:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 23 14:29:16 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/dec.rules

    (StructSelect [2] (StructMake4 _ _ x _)) => x
    (StructSelect [3] (StructMake4 _ _ _ x)) => x
    
    // Special case coming from immediate interface rewriting
    // Typical case: (StructSelect [0] (IData (IMake typ dat)) rewrites to (StructSelect [0] dat)
    // but because the interface is immediate, the type of "IData" is a one-element struct containing
    // a pointer that is not the pointer type of dat (can be a *uint8).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:48:31 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    	boundPVCNode1a      = makeTestPVC("unbound-pvc", "1G", "", pvcBound, "pv-node1a", "1", &waitClass)
    	immediateUnboundPVC = makeTestPVC("immediate-unbound-pvc", "1G", "", pvcUnbound, "", "1", &immediateClass)
    	immediateBoundPVC   = makeTestPVC("immediate-bound-pvc", "1G", "", pvcBound, "pv-bound-immediate", "1", &immediateClass)
    	localPreboundPVC1a  = makeTestPVC("local-prebound-pvc-1a", "1G", "", pvcPrebound, "local-pv-node1a", "1", &waitClass)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  9. pkg/proxy/apis/config/types.go

    	// than 0.
    	SyncPeriod metav1.Duration
    	// minSyncPeriod is the minimum period between iptables rule resyncs (e.g. '5s',
    	// '1m', '2h22m'). A value of 0 means every Service or EndpointSlice change will
    	// result in an immediate iptables resync.
    	MinSyncPeriod metav1.Duration
    }
    
    // KubeProxyIPVSConfiguration contains ipvs-related configuration
    // details for the Kubernetes proxy server.
    type KubeProxyIPVSConfiguration struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/volumebinding/volume_binding_test.go

    	tf "k8s.io/kubernetes/pkg/scheduler/testing/framework"
    )
    
    var (
    	immediate            = storagev1.VolumeBindingImmediate
    	waitForFirstConsumer = storagev1.VolumeBindingWaitForFirstConsumer
    	immediateSC          = &storagev1.StorageClass{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "immediate-sc",
    		},
    		VolumeBindingMode: &immediate,
    	}
    	waitSC = &storagev1.StorageClass{
    		ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 32K bytes
    - Viewed (0)
Back to top