Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 110 for enumeration (0.24 sec)

  1. src/vendor/golang.org/x/crypto/cryptobyte/asn1.go

    // AddASN1Int64WithTag appends a DER-encoded ASN.1 INTEGER with the
    // given tag.
    func (b *Builder) AddASN1Int64WithTag(v int64, tag asn1.Tag) {
    	b.addASN1Signed(tag, v)
    }
    
    // AddASN1Enum appends a DER-encoded ASN.1 ENUMERATION.
    func (b *Builder) AddASN1Enum(v int64) {
    	b.addASN1Signed(asn1.ENUM, v)
    }
    
    func (b *Builder) addASN1Signed(tag asn1.Tag, v int64) {
    	b.AddASN1(tag, func(c *Builder) {
    		length := 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. guava-tests/test/com/google/common/collect/MapsTest.java

      public void testFromPropertiesNullKey() {
        Properties properties =
            new Properties() {
              @Override
              public Enumeration<?> propertyNames() {
                return Iterators.asEnumeration(Arrays.asList(null, "first", "second").iterator());
              }
            };
        properties.setProperty("first", "true");
        properties.setProperty("second", "null");
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K 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. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorIntegrationTest.groovy

                abstract class GuavaVersionWorkAction extends TestWorkAction {
                    @Inject
                    public GuavaVersionWorkAction() { }
    
                    public void execute() {
                        Enumeration<URL> resources = this.getClass().getClassLoader()
                                .getResources("META-INF/MANIFEST.MF")
                        while (resources.hasMoreElements()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 31K bytes
    - Viewed (0)
Back to top