Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 377 for wintls (0.14 sec)

  1. src/runtime/os_windows.go

    )
    
    // Function to be called by windows CreateThread
    // to start new os thread.
    func tstart_stdcall(newm *m)
    
    // Init-time helper
    func wintls()
    
    type mOS struct {
    	threadLock mutex   // protects "thread" and prevents closing
    	thread     uintptr // thread handle
    
    	waitsema   uintptr // semaphore for parking on locks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  2. hack/golangci-hints.yaml

    # enable an increasing amount of checks:
    # - golangci.yaml is the most permissive configuration. All existing code
    #   passed.
    # - golangci-strict.yaml adds checks that all new code in pull requests
    #   must pass.
    # - golangci-hints.yaml adds checks for code patterns where developer
    #   and reviewer may decide whether findings should get addressed before
    #   merging. Beware that the golangci-lint output includes also the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/topologymanager/policy.go

    			allProviderHints = append(allProviderHints, hints[resource])
    		}
    	}
    	return allProviderHints
    }
    
    func narrowestHint(hints []TopologyHint) *TopologyHint {
    	if len(hints) == 0 {
    		return nil
    	}
    	var narrowestHint *TopologyHint
    	for i := range hints {
    		if hints[i].NUMANodeAffinity == nil {
    			continue
    		}
    		if narrowestHint == nil {
    			narrowestHint = &hints[i]
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:25 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java

            public IntervalRule(final String from, final String to, final String days, final long delay) {
                final int[] fints = parseTime(from);
                fromHours = fints[0];
                fromMinutes = fints[1];
                final int[] tints = parseTime(to);
                toHours = tints[0];
                toMinutes = tints[1];
                final String[] values = days.split(",");
                final List<Integer> list = new ArrayList<>();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/primitives/Ints.java

     *
     * @author Kevin Bourrillion
     * @since 1.0
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    public final class Ints extends IntsMethodsForWeb {
      private Ints() {}
    
      /**
       * The number of bytes required to represent a primitive {@code int} value.
       *
       * <p><b>Java 8+ users:</b> use {@link Integer#BYTES} instead.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/primitives/Ints.java

     *
     * @author Kevin Bourrillion
     * @since 1.0
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    public final class Ints extends IntsMethodsForWeb {
      private Ints() {}
    
      /**
       * The number of bytes required to represent a primitive {@code int} value.
       *
       * <p><b>Java 8+ users:</b> use {@link Integer#BYTES} instead.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/topologymanager/topology_manager.go

    	return ErrorTopologyAffinity
    }
    
    // Manager interface provides methods for Kubelet to manage pod topology hints
    type Manager interface {
    	// PodAdmitHandler is implemented by Manager
    	lifecycle.PodAdmitHandler
    	// AddHintProvider adds a hint provider to manager to indicate the hint provider
    	// wants to be consulted with when making topology hints
    	AddHintProvider(HintProvider)
    	// AddContainer adds pod to Manager for tracking
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 15 12:43:16 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. hack/verify-golangci-lint.sh

            echo >&2
            usage
          fi
          ;;
        s)
          golangci_config="${KUBE_ROOT}/hack/golangci-strict.yaml"
          strict=1
          ;;
        n)
          golangci_config="${KUBE_ROOT}/hack/golangci-hints.yaml"
          hints=1
          ;;
        g)
          githubactions="${OPTARG}"
          ;;
        c)
          if [ "${OPTARG}" = "none" ]; then
            golangci_config=""
          else
            golangci_config="${OPTARG}"
          fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/topologymanager/scope.go

    	// wants to be consoluted with when making topology hints
    	AddHintProvider(h HintProvider)
    	// AddContainer adds pod to Manager for tracking
    	AddContainer(pod *v1.Pod, container *v1.Container, containerID string)
    	// RemoveContainer removes pod from Manager tracking
    	RemoveContainer(containerID string) error
    	// Store is the interface for storing pod topology hints
    	Store
    }
    
    type scope struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 14:44:24 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm64/asm_arm64_test.go

    			wantHi: 0x0,
    			wantLo: 0x7f,
    		},
    		{
    			v:      0x10fe,
    			shift:  1,
    			wantHi: 0x0,
    			wantLo: 0x87f,
    		},
    		{
    			v:      0x2002,
    			shift:  1,
    			wantHi: 0x2000,
    			wantLo: 0x1,
    		},
    		{
    			v:      0xfffffe,
    			shift:  1,
    			wantHi: 0xffe000,
    			wantLo: 0xfff,
    		},
    		{
    			v:      0x1000ffe,
    			shift:  1,
    			wantHi: 0xfff000,
    			wantLo: 0xfff,
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:46:11 UTC 2023
    - 7.8K bytes
    - Viewed (0)
Back to top