Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 124 for 303 (0.02 sec)

  1. src/regexp/testdata/re2-search.txt

    "^(foo|bar|[A-Z])$"
    -;-;-;-
    0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3
    "^(?:^(foo|bar|[A-Z])$)$"
    -;-;-;-
    0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3
    "^(?:^(foo|bar|[A-Z])$)"
    -;-;-;-
    0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3
    "(?:^(foo|bar|[A-Z])$)$"
    -;-;-;-
    0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3
    strings
    ""
    "bar"
    regexps
    "^(foo|bar|[A-Z])$"
    -;-;-;-
    0-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3
    "^(?:^(foo|bar|[A-Z])$)$"
    -;-;-;-
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 42.4K bytes
    - Viewed (0)
  2. docs/pt/docs/tutorial/schema-extra-example.md

    href="https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.9.5" class="external-link" target="_blank">`examples`</a>, mas o OpenAPI 3.0.3 é baseado numa versão mais antiga do JSON Schema que não tinha `examples`.
    
    Por isso, o OpenAPI 3.0.3 definiu o seu próprio <a href="https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.3.md#fixed-fields-20" class="external-link" target="_blank">`example`</a> para a versão modificada do **JSON Schema** que é usada, para o mesmo...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. docs/ru/docs/tutorial/schema-extra-example.md

    ema.org/draft/2019-09/json-schema-validation.html#rfc.section.9.5" class="external-link" target="_blank">`examples`</a>, но OpenAPI 3.0.3 основан на более старой версии JSON-схемы, которая не имела поля `examples`.
    
    Таким образом, OpenAPI 3.0.3 определяет своё собственное поле <a href="https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.3.md#fixed-fields-20" class="external-link" target="_blank">`example`</a> для модифицированной версии **JSON Schema**, которую он использует...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. maven-artifact/src/main/java/org/apache/maven/artifact/repository/ArtifactRepository.java

        /**
         * @since 3.0-alpha-3
         * @return repository proxy
         */
        Proxy getProxy();
    
        /**
         * @since 3.0.3
         * @return the repositories mirrored by the actual one
         */
        List<ArtifactRepository> getMirroredRepositories();
    
        /**
         * @since 3.0.3
         * @param mirroredRepositories the repositories that the actual one mirrors
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Feb 23 17:14:45 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. docs/em/docs/tutorial/schema-extra-example.md

    `Header()`, &amp; `Cookie()`, `example` ⚖️ `examples` 🚮 <a href="https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.3.md#parameter-object" class="external-link" target="_blank">🗄 🔑, `Parameter Object` (🔧)</a>.
    
    &amp; `Body()`, `File()`, &amp; `Form()`, `example` ⚖️ `examples` 📊 🚮 <a href="https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.3.md#mediaTypeObject" class="external-link" target="_blank">🗄 🔑, `Request Body Object`, 🏑 `content`, 🔛 `Media Type Object`...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. src/internal/runtime/syscall/defs_linux_ppc64x.go

    // license that can be found in the LICENSE file.
    
    //go:build linux && (ppc64 || ppc64le)
    
    package syscall
    
    const (
    	SYS_FCNTL         = 55
    	SYS_MPROTECT      = 125
    	SYS_EPOLL_CTL     = 237
    	SYS_EPOLL_PWAIT   = 303
    	SYS_EPOLL_CREATE1 = 315
    	SYS_EPOLL_PWAIT2  = 441
    	SYS_EVENTFD2      = 314
    
    	EFD_NONBLOCK = 0x800
    )
    
    type EpollEvent struct {
    	Events    uint32
    	pad_cgo_0 [4]byte
    	Data      [8]byte // unaligned uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 14:54:29 UTC 2024
    - 529 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/eventclock/fake_event_clock_test.go

    			}
    		}
    		if abs {
    			ec.EventAfterTime(f, now.Add(d))
    		} else {
    			ec.EventAfterDuration(f, d)
    		}
    	}
    	try(true, true, time.Minute)
    	for i := 0; i < batchSize; i++ {
    		d := time.Duration(rand.Intn(30)-3) * time.Second
    		try(i%2 == 0, d >= 0, d)
    	}
    	ec.Run(nil)
    	if numDone != batchSize+1 {
    		t.Errorf("Got only %v events", numDone)
    	}
    	lastTime := now.Add(-3 * time.Second)
    	for i := 0; i <= batchSize; i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 07 04:07:31 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  8. cluster/gce/manifests/konnectivity-server.yaml

        {{ container_security_context }}:
          {{ disallow_privilege_escalation}}
          {{ capabilities }}
            {{ drop_capabilities }}
        image: registry.k8s.io/kas-network-proxy/proxy-server:v0.30.3
        resources:
          requests:
            cpu: 25m
        command: [ "/proxy-server"{{ konnectivity_args }} ]
        livenessProbe:
          httpGet:
            scheme: HTTP
            host: 127.0.0.1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 10:31:11 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. cluster/gce/addons/konnectivity-agent/konnectivity-agent-ds.yaml

              operator: "Exists"
            - operator: "Exists"
              effect: "NoExecute"
          nodeSelector:
            kubernetes.io/os: linux
          containers:
            - image: registry.k8s.io/kas-network-proxy/proxy-agent:v0.30.3
              name: konnectivity-agent
              command: ["/proxy-agent"]
              args: [
                      "--logtostderr=true",
                      "--ca-cert=/var/run/secrets/kubernetes.io/serviceaccount/ca.crt",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 10:31:11 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/codeQuality/codeQuality/kotlin/build.gradle.kts

    dependencies {
    // end::specify-groovy-version[]
        implementation(localGroovy())
        testImplementation("junit:junit:4.13")
    // tag::specify-groovy-version[]
        "codenarc"("org.codehaus.groovy:groovy-all:3.0.3")
        "codenarc"("org.codenarc:CodeNarc:1.6.1")
    }
    // end::specify-groovy-version[]
    
    // tag::customize-checkstyle-memory[]
    tasks.withType<Checkstyle>().configureEach {
        minHeapSize = "200m"
        maxHeapSize = "1g"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 14 14:22:49 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top