Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of about 10,000 for internally (0.16 sec)

  1. pkg/wasm/imagefetcher.go

    	// while the Solo's Wasm layer is actually uncompressed and therefore
    	// the content itself is a raw Wasm binary. So using "Uncompressed()" here result in errors
    	// since internally it tries to umcompress it as gzipped blob.
    	r, err := layer.Compressed()
    	if err != nil {
    		return nil, fmt.Errorf("could not get layer content: %v", err)
    	}
    	defer r.Close()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 10 05:44:51 UTC 2023
    - 12K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/codegen_test_h.golden

      //   with dim indices specifying which value. No bounds checking is performed
      //   on dim indices.
      //
      // Unlike the arg methods, there is no set_resultN_data method. The result
      // buffers are managed internally, and may change after each call to Run.
    
      tensorflow::uint32* result0_data() {
        return static_cast<tensorflow::uint32*>(result_data(0));
      }
      tensorflow::uint32& result0(size_t dim0, size_t dim1) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/wait/poll.go

    	return poll(ctx, true, poller(interval, 0), condition)
    }
    
    // Internally used, each of the public 'Poll*' function defined in this
    // package should invoke this internal function with appropriate parameters.
    // ctx: the context specified by the caller, for infinite polling pass
    // a context that never gets cancelled or expired.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 06:13:35 UTC 2023
    - 14K bytes
    - Viewed (0)
  4. common/scripts/kind_provisioner.sh

        # Kind currently supports getting a kubeconfig for internal or external usage. To simplify our tests,
        # its much simpler if we have a single kubeconfig that can be used internally and externally.
        # To do this, we can replace the server with the IP address of the docker container
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 19:12:55 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java/src/main/java/org/gradle/api/plugins/JavaPlugin.java

    import org.gradle.api.internal.artifacts.configurations.RoleBasedConfigurationContainerInternal;
    import org.gradle.api.internal.component.SoftwareComponentContainerInternal;
    import org.gradle.api.internal.plugins.DefaultArtifactPublicationSet;
    import org.gradle.api.internal.plugins.DslObject;
    import org.gradle.api.internal.project.ProjectInternal;
    import org.gradle.api.internal.tasks.JvmConstants;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  6. src/runtime/mgcwork.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime
    
    import (
    	"internal/goarch"
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    const (
    	_WorkbufSize = 2048 // in bytes; larger values result in less contention
    
    	// workbufAlloc is the number of bytes to allocate at a time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorDecoratedTest.groovy

    import org.gradle.cache.internal.TestCrossBuildInMemoryCacheFactory
    import org.gradle.internal.BiAction
    import org.gradle.internal.Describables
    import org.gradle.internal.instantiation.PropertyRoleAnnotationHandler
    import org.gradle.util.internal.ConfigureUtil
    import spock.lang.Issue
    
    import java.util.function.BiFunction
    
    import static AsmBackedClassGeneratorTest.Bean
    import static AsmBackedClassGeneratorTest.InterfaceBean
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 22K bytes
    - Viewed (0)
  8. src/os/signal/doc.go

    generally be honored. However, some signals are explicitly unblocked:
    the synchronous signals, SIGILL, SIGTRAP, SIGSTKFLT, SIGCHLD, SIGPROF,
    and, on Linux, signals 32 (SIGCANCEL) and 33 (SIGSETXID)
    (SIGCANCEL and SIGSETXID are used internally by glibc). Subprocesses
    started by [os.Exec], or by [os/exec], will inherit the
    modified signal mask.
    
    # Changing the behavior of signals in Go programs
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. tensorflow/c/ops.h

        TF_ShapeInferenceContext* ctx, int i, TF_ShapeHandle* handle,
        TF_Status* status);
    
    // Places the given shape handle into the `i`th output position of the given
    // context. Internally, the shape handle is copied; the caller may subsequently
    // delete `handle`.
    TF_CAPI_EXPORT
    extern void TF_ShapeInferenceContextSetOutput(TF_ShapeInferenceContext* ctx,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/crypto/chacha20/chacha_generic.go

    // than the current value.
    //
    // Note that the execution time of XORKeyStream is not independent of the
    // counter value.
    func (s *Cipher) SetCounter(counter uint32) {
    	// Internally, s may buffer multiple blocks, which complicates this
    	// implementation slightly. When checking whether the counter has rolled
    	// back, we must use both s.counter and s.len to determine how many blocks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 13.9K bytes
    - Viewed (0)
Back to top