Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 675 for whatev (0.18 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/framer/framer.go

    // byte slice will be modified the next time ReadFrame is invoked and should not be altered.
    func (r *jsonFrameReader) Read(data []byte) (int, error) {
    	// Return whatever remaining data exists from an in progress frame
    	if n := len(r.remaining); n > 0 {
    		if n <= len(data) {
    			//nolint:staticcheck // SA4006,SA4010 underlying array of data is modified here.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 13:33:12 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/install/internal/DefaultJavaToolchainProvisioningServiceTest.groovy

        private static final String ARCHIVE_NAME = 'ibm-11-x64-hotspot-linux.zip'
    
        private static final JavaToolchainDownload DOWNLOAD = JavaToolchainDownload.fromUri(URI.create('https://server/whatever'))
    
        @TempDir
        public File temporaryFolder
    
        def registry = Mock(JavaToolchainResolverRegistryInternal)
        def downloader = Mock(SecureFileDownloader)
        def cache = Mock(DefaultJdkCacheDirectory)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 23:01:05 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. pkg/istio-agent/grpcxds/grpc_bootstrap.go

    	// token will be replaced with the server's listening "IP:port" (e.g.,
    	// "0.0.0.0:8080", "[::]:8080").
    	ServerListenerNameTemplate = ServerListenerNamePrefix + "%s"
    )
    
    // Bootstrap contains the general structure of what's expected by GRPC's XDS implementation.
    // See https://github.com/grpc/grpc-go/blob/master/xds/internal/xdsclient/bootstrap/bootstrap.go
    // TODO use structs from gRPC lib if created/exported
    type Bootstrap struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. src/net/fd_windows.go

    		return n, &OpError{Op: "wsasend", Net: c.fd.net, Source: c.fd.laddr, Addr: c.fd.raddr, Err: err}
    	}
    	return n, nil
    }
    
    func (fd *netFD) writeBuffers(buf *Buffers) (int64, error) {
    	n, err := fd.pfd.Writev((*[][]byte)(buf))
    	runtime.KeepAlive(fd)
    	return n, wrapSyscallError("wsasend", err)
    }
    
    func (fd *netFD) accept() (*netFD, error) {
    	s, rawsa, rsan, errcall, err := fd.pfd.Accept(func() (syscall.Handle, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 16:46:10 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/DefaultMutableIvyModuleResolveMetadataTest.groovy

            immutableCopy.statusScheme == ["1", "2"]
        }
    
        def exclude(String group, String module, String... confs) {
            def exclude = new DefaultExclude(DefaultModuleIdentifier.newId(group, module), confs, "whatever")
            return exclude
        }
    
        def artifact(String name, String... confs) {
            def artifact = new Artifact(new DefaultIvyArtifactName(name, "type", "ext", "classifier"), confs as Set<String>)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. hack/apidiff.sh

    go install golang.org/x/exp/cmd/apidiff@latest
    
    cd "${KUBE_ROOT}"
    
    # output_name targets a target directory and prints the base name of
    # an output file for that target.
    output_name () {
        what="$1"
    
        echo "${what}" | sed -e 's/[^a-zA-Z0-9_-]/_/g' -e 's/$/.out/'
    }
    
    # run invokes apidiff once per target and stores the output
    # file(s) in the given directory.
    run () {
        out="$1"
        mkdir -p "$out"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:00:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. src/cmd/cgo/godefs.go

    		}
    	}
    	for _, n := range f.Name {
    		if s := override[n.Go]; s != "" {
    			override[n.Mangle] = s
    		}
    	}
    
    	// Otherwise, if the source file says type T C.whatever,
    	// use "T" as the mangling of C.whatever,
    	// except in the definition (handled at end of function).
    	refName := make(map[*ast.Expr]*Name)
    	for _, r := range f.Ref {
    		refName[r.Expr] = r.Name
    	}
    	for _, d := range f.AST.Decls {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/internal/buildevents/BuildExceptionReporterTest.groovy

    -----------
    * Where:
    $LOCATION line: 42
    
    * What went wrong:
    Execution failed for null.
    {info}> {normal}org.gradle.internal.buildevents.TestCompilationFailureException (no error message)
    
    * Try:
    $INFO
    $SCAN
    ==============================================================================
    
    {failure}3: {normal}{failure}Task failed with an exception.{normal}
    -----------
    * What went wrong:
    <error>
    
    * Try:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/collect/testing/SafeTreeMap.java

      }
    
      @Override
      public Collection<V> values() {
        return delegate.values();
      }
    
      @CanIgnoreReturnValue
      private <T> T checkValid(T t) {
        // a ClassCastException is what's supposed to happen!
        @SuppressWarnings("unchecked")
        K k = (K) t;
        int unused = comparator().compare(k, k);
        return t;
      }
    
      @Override
      public boolean equals(@Nullable Object obj) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/single_versions.adoc

    include::sample[dir="snippets/dependencyManagement/declaringDependencies-concreteVersion/groovy",files="build.gradle[tags=strict-shorthand]"]
    ====
    
    A strict version _cannot be upgraded_ and overrides whatever transitive dependencies originating from this dependency provide.
    It is recommended to use ranges for strict versions.
    
    The notation `[1.7, 1.8[!!1.7.25` above is equivalent to:
    
    * strictly `[1.7, 1.8[`
    * prefer `1.7.25`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:46:26 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top