Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 109 for strnames (0.14 sec)

  1. platforms/jvm/plugins-groovy/src/main/java/org/gradle/api/tasks/GroovyRuntime.java

                    }
                }
            };
        }
    
        private static List<File> collectJarsFromClasspath(Iterable<File> classpath, Set<String> jarNames) {
            return stream(classpath.spliterator(), false)
                .filter(file -> jarNames.contains(file.getName()))
                .collect(toList());
        }
    
        private static Set<String> groovyJarNamesFor(VersionNumber groovyVersion) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  2. platforms/software/security/src/main/java/org/gradle/plugins/signing/signatory/Signatory.java

         */
        @Internal
        String getName();
    
        /**
         * Exhausts {@code toSign}, and writes the signature to {@code signatureDestination}. The caller is responsible for closing the streams, though the output WILL be flushed.
         *
         * @param toSign The source of the data to be signed
         * @param destination Where the signature will be written to
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/http/ExchangeCodec.kt

    interface ExchangeCodec {
      /** The connection or CONNECT tunnel that owns this codec. */
      val carrier: Carrier
    
      /** Returns an output stream where the request body can be streamed. */
      @Throws(IOException::class)
      fun createRequestBody(
        request: Request,
        contentLength: Long,
      ): Sink
    
      /** This should update the HTTP engine's sentRequestMillis field. */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_exit.txt

    ! stdout 'panic'
    stdout ^FAIL
    
    # Ensure that other flags still do the right thing.
    go test -list=. ./zero
    stdout ExitZero
    
    ! go test -bench=. ./zero
    stdout 'panic'
    
    # 'go test' with no args streams output without buffering. Ensure that it still
    # catches a zero exit with missing output.
    cd zero
    ! go test
    stdout 'panic'
    cd ../normal
    go test
    stdout ^ok
    cd ..
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 14 20:38:03 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  5. src/runtime/vdso_elf32.go

    // license that can be found in the LICENSE file.
    
    //go:build linux && (386 || arm)
    
    package runtime
    
    // ELF32 structure definitions for use by the vDSO loader
    
    type elfSym struct {
    	st_name  uint32
    	st_value uint32
    	st_size  uint32
    	st_info  byte
    	st_other byte
    	st_shndx uint16
    }
    
    type elfVerdef struct {
    	vd_version uint16 /* Version revision */
    	vd_flags   uint16 /* Version information */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  6. analysis/analysis-api-standalone/tests/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/session/builder/sessionBuilderTestUtils.kt

    import java.nio.file.Path
    import java.nio.file.Paths
    import java.time.LocalDateTime
    import java.time.ZoneOffset
    import kotlin.io.path.absolutePathString
    import kotlin.io.path.extension
    import kotlin.streams.asSequence
    
    internal fun testDataPath(path: String): Path {
        return Paths.get("analysis/analysis-api-standalone/testData/sessionBuilder").resolve(path)
    }
    
    fun KtCallExpression.assertIsCallOf(callableId: CallableId) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/doc.go

    // which is sent as the first byte of the message. The second byte is the channel
    // id. This CLOSE signal is handled by the websocket server by closing the stream,
    // allowing the other streams to complete transmission if necessary, and gracefully
    // shutdown the connection.
    //
    // Example client session:
    //
    //	CONNECT http://server.com with subprotocol "v5.channel.k8s.io"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 18:37:18 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbPipeInputStream.java

            return this.handle.ensureOpen();
        }
    
    
        /**
         * This stream class is unbuffered. Therefore this method will always
         * return 0 for streams connected to regular files. However, a
         * stream created from a Named Pipe this method will query the server using a
         * "peek named pipe" operation and return the number of available bytes
         * on the server.
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 07:12:23 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/security_context_windows.go

    // and then optimize this logic according to the best time.
    // https://docs.google.com/document/d/1Tjxzjjuy4SQsFSUVXZbvqVb64hjNAG5CQX8bK7Yda9w
    // note: usernames on Windows are NOT case sensitive!
    func verifyRunAsNonRoot(pod *v1.Pod, container *v1.Container, uid *int64, username string) error {
    	effectiveSc := securitycontext.DetermineEffectiveSecurityContext(pod, container)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 18 22:23:13 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/named_certificates.go

    		}
    
    		// error is not possible given above call to X509KeyPair
    		x509Cert, _ := x509.ParseCertificate(cert.Certificate[0])
    
    		names := sniCerts[i].sniNames
    		for _, name := range names {
    			byNameExplicit[name] = &cert
    		}
    
    		klog.V(2).InfoS("Loaded SNI cert", "index", i, "certName", c.sniCerts[i].Name(), "certDetail", GetHumanCertDetail(x509Cert))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 21 07:29:30 UTC 2022
    - 3.2K bytes
    - Viewed (0)
Back to top