Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 153 for pinyin (0.12 sec)

  1. test/tinyfin.go

    Dmitry Vyukov <******@****.***> 1446549555 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 03 18:57:18 UTC 2015
    - 1.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tasks/addRules/tests/taskRuleDependsOn.out

    Pinging: Server1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 34 bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/fuzzer/fuzzer.go

    	c.FuzzNoCustom(obj)
    
    	// Pinning values for fields that get defaults if fuzz value is empty string or nil (thus making the round trip test fail)
    	obj.IgnorePreflightErrors = nil
    	obj.ImagePullSerial = ptr.To(true)
    }
    
    func fuzzClusterConfiguration(obj *kubeadm.ClusterConfiguration, c fuzz.Continue) {
    	c.FuzzNoCustom(obj)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    	"nulik":    0x3d,
    	"osojs":    0x65,
    	"oxendict": 0x3e,
    	"pahawh2":  0x3f,
    	"pahawh3":  0x40,
    	"pahawh4":  0x41,
    	"pamaka":   0x42,
    	"peano":    0x43,
    	"petr1708": 0x44,
    	"pinyin":   0x45,
    	"polyton":  0x46,
    	"provenc":  0x47,
    	"puter":    0x48,
    	"rigik":    0x49,
    	"rozaj":    0x4a,
    	"rumgr":    0x4b,
    	"scotland": 0x4c,
    	"scouse":   0x4d,
    	"simple":   0x6f,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/CertificatePinner.kt

     *
     * ## Warning: Certificate Pinning is Dangerous!
     *
     * Pinning certificates limits your server team's abilities to update their TLS certificates. By
     * pinning certificates, you take on additional operational complexity and limit your ability to
     * migrate between certificate authorities. Do not use certificate pinning without the blessing of
     * your server's TLS administrator!
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  6. docs/de/docs/deployment/versions.md

    ## `fastapi`-Version pinnen
    
    Als Erstes sollten Sie die Version von **FastAPI**, die Sie verwenden, an die höchste Version „pinnen“, von der Sie wissen, dass sie für Ihre Anwendung korrekt funktioniert.
    
    Angenommen, Sie verwenden in Ihrer Anwendung die Version `0.45.0`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:06:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/TransCallNamedPipeResponse.java

            return 0;
        }
        int readDataWireFormat( byte[] buffer, int bufferIndex, int len ) {
            if( pipe.pipeIn != null ) {
                TransactNamedPipeInputStream in = (TransactNamedPipeInputStream)pipe.pipeIn;
                synchronized( in.lock ) {
                    in.receive( buffer, bufferIndex, len );
                    in.lock.notify();
                }
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 2K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/tls/CertificatePinnerChainValidationTest.kt

        val request =
          Request.Builder()
            .url(server.url("/"))
            .build()
        val call = client.newCall(request)
        assertFailsWith<SSLPeerUnverifiedException> {
          call.execute()
        }.also { expected ->
          // Certificate pinning fails!
          assertThat(expected.message!!).startsWith("Certificate pinning failure!")
        }
      }
    
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/tasks/addRules/groovy/build.gradle

    // tag::all[]
    // tag::task-rule[]
    tasks.addRule("Pattern: ping<ID>") { String taskName ->
    
        if (taskName.startsWith("ping")) {
            task(taskName) {
                doLast {
                    println "Pinging: " + (taskName - 'ping')
                }
            }
        }
    }
    // end::task-rule[]
    
    tasks.register('groupPing') {
        dependsOn 'pingServer1', 'pingServer2'
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 376 bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SmbNamedPipe.java

        public InputStream getNamedPipeInputStream() throws IOException {
            if( pipeIn == null ) {
                if(( pipeType & PIPE_TYPE_CALL ) == PIPE_TYPE_CALL ||
                        ( pipeType & PIPE_TYPE_TRANSACT ) == PIPE_TYPE_TRANSACT ) {
                    pipeIn = new TransactNamedPipeInputStream( this );
                } else {
                    pipeIn = new SmbFileInputStream(this,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 7.3K bytes
    - Viewed (0)
Back to top