Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 54 for enumeration (0.41 sec)

  1. subprojects/core-api/src/main/java/org/gradle/util/CollectionUtils.java

    import java.lang.reflect.Array;
    import java.util.AbstractList;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Collection;
    import java.util.Collections;
    import java.util.Comparator;
    import java.util.Enumeration;
    import java.util.HashMap;
    import java.util.HashSet;
    import java.util.Iterator;
    import java.util.LinkedHashMap;
    import java.util.LinkedHashSet;
    import java.util.LinkedList;
    import java.util.List;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:19 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. pkg/log/options.go

    	defaultOutputPath         = "stdout"
    	defaultErrorOutputPath    = "stderr"
    	defaultRotationMaxAge     = 30
    	defaultRotationMaxSize    = 100 * 1024 * 1024
    	defaultRotationMaxBackups = 1000
    )
    
    // Level is an enumeration of all supported log levels.
    type Level int
    
    const (
    	// NoneLevel disables logging
    	NoneLevel Level = iota
    	// FatalLevel enables fatal level logging
    	FatalLevel
    	// ErrorLevel enables error level logging
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. src/runtime/traceruntime.go

    //
    // nosplit because traceAcquire is nosplit.
    //
    //go:nosplit
    func lockRankMayTraceFlush() {
    	lockWithRankMayAcquire(&trace.lock, getLockRank(&trace.lock))
    }
    
    // traceBlockReason is an enumeration of reasons a goroutine might block.
    // This is the interface the rest of the runtime uses to tell the
    // tracer why a goroutine blocked. The tracer then propagates this information
    // into the trace however it sees fit.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  4. docs/ko/docs/tutorial/path-params.md

    ```
    
    그렇지 않으면 `/users/{user_id}`는 `/users/me` 요청 또한 매개변수 `user_id`의 값이 `"me"`인 것으로 "생각하게" 됩니다.
    
    ## 사전정의 값
    
    만약 *경로 매개변수*를 받는 *경로 작동*이 있지만, *경로 매개변수*로 가능한 값들을 미리 정의하고 싶다면 파이썬 표준 <abbr title="열거형(Enumeration)">`Enum`</abbr>을 사용할 수 있습니다.
    
    ### `Enum` 클래스 생성
    
    `Enum`을 임포트하고 `str`과 `Enum`을 상속하는 서브 클래스를 만듭니다.
    
    `str`을 상속함으로써 API 문서는 값이 `string` 형이어야 하는 것을 알게 되고 이는 문서에 제대로 표시됩니다.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. src/os/user/lookup_windows.go

    	// The primary group should not change from RID 513 here either
    	// but the group will be called "None" instead:
    	// https://www.adampalmer.me/iodigitalsec/2013/08/10/windows-null-session-enumeration/
    	// "Group 'None' (RID: 513)"
    	u, e := syscall.UTF16PtrFromString(username)
    	if e != nil {
    		return "", e
    	}
    	d, e := syscall.UTF16PtrFromString(domain)
    	if e != nil {
    		return "", e
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. docs/ja/docs/tutorial/path-params.md

    ```
    
    それ以外の場合、 `/users/{users_id}` は `/users/me` としてもマッチします。値が「"me"」であるパラメータ `user_id` を受け取ると「考え」ます。
    
    ## 定義済みの値
    
    *パスパラメータ*を受け取る *path operation* をもち、有効な*パスパラメータ*の値を事前に定義したい場合は、標準のPython <abbr title="Enumeration">`Enum`</abbr> を利用できます。
    
    ### `Enum` クラスの作成
    
    `Enum` をインポートし、 `str` と `Enum` を継承したサブクラスを作成します。
    
    `str` を継承することで、APIドキュメントは値が `文字列` でなければいけないことを知り、正確にレンダリングできるようになります。
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1beta1/types.go

    	RollingUpdate *RollingUpdateStatefulSetStrategy `json:"rollingUpdate,omitempty" protobuf:"bytes,2,opt,name=rollingUpdate"`
    }
    
    // StatefulSetUpdateStrategyType is a string enumeration type that enumerates
    // all possible update strategies for the StatefulSet controller.
    type StatefulSetUpdateStrategyType string
    
    const (
    	// RollingUpdateStatefulSetStrategyType indicates that update will be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  8. src/runtime/syscall_windows_test.go

    			t.Error("lparam was not passed to callback")
    		}
    		b, _, _ := isWindows.Call(uintptr(hwnd))
    		if b == 0 {
    			t.Error("USER32.IsWindow returns FALSE")
    		}
    		counter++
    		return 1 // continue enumeration
    	})
    	a, _, _ := d.Proc("EnumWindows").Call(cb, 888)
    	if a == 0 {
    		t.Error("USER32.EnumWindows returns FALSE")
    	}
    	if counter == 0 {
    		t.Error("Callback has been never called or your have no windows")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 16:31:35 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  9. pilot/pkg/model/endpointshards.go

    			delete(e.shardsBySvc[serviceName], namespace)
    		}
    		if len(e.shardsBySvc[serviceName]) == 0 {
    			delete(e.shardsBySvc, serviceName)
    		}
    	}
    	epShards.Unlock()
    }
    
    // PushType is an enumeration that decides what type push we should do when we get EDS update.
    type PushType int
    
    const (
    	// NoPush does not push any thing.
    	NoPush PushType = iota
    	// IncrementalPush just pushes endpoints.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  10. pkg/apis/apps/types.go

    	// RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.
    	RollingUpdate *RollingUpdateStatefulSetStrategy
    }
    
    // StatefulSetUpdateStrategyType is a string enumeration type that enumerates
    // all possible update strategies for the StatefulSet controller.
    type StatefulSetUpdateStrategyType string
    
    const (
    	// RollingUpdateStatefulSetStrategyType indicates that update will be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:09:29 UTC 2023
    - 36.4K bytes
    - Viewed (0)
Back to top