Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of about 10,000 for internally (0.26 sec)

  1. guava/src/com/google/common/collect/AbstractBiMap.java

          V v = entry.getValue();
          K conflict = inverse.delegate.putIfAbsent(v, k);
          if (conflict != null) {
            broken = entry;
            // We're definitely going to throw, but we'll try to keep the BiMap in an internally
            // consistent state by removing the bad entry.
            itr.remove();
          }
        }
        if (broken != null) {
          throw new IllegalArgumentException("value already present: " + broken.getValue());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Aug 24 01:40:03 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_main_function.cc

    // function.
    bool ShouldIncludeInMainFunction(func::FuncOp func_op) {
      return !func_op.isPrivate() && IsExported(func_op) &&
             IsEntryFunction(func_op);
    }
    
    // Sets a function to be private so it can be referred internally.
    void SetFunctionPrivate(func::FuncOp func) {
      func.setVisibility(SymbolTable::Visibility::Private);
    
      // The `tf_saved_model` attributes can only be applied to public functions.
      for (auto& attr : func->getAttrs()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  3. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/ApiGroovyCompiler.java

    import org.gradle.api.internal.classloading.GroovySystemLoader;
    import org.gradle.api.internal.classloading.GroovySystemLoaderFactory;
    import org.gradle.api.tasks.WorkResult;
    import org.gradle.internal.classloader.ClassLoaderUtils;
    import org.gradle.internal.classloader.DefaultClassLoaderFactory;
    import org.gradle.internal.classloader.FilteringClassLoader;
    import org.gradle.internal.classpath.DefaultClassPath;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/netbios/NbtAddress.java

    import jcifs.NetbiosName;
    
    
    /**
     * This class represents a NetBIOS over TCP/IP address. Under normal
     * conditions, users of jCIFS need not be concerned with this class as
     * name resolution and session services are handled internally by the smb package.
     * 
     * <p>
     * Applications can use the methods <code>getLocalHost</code>,
     * <code>getByName</code>, and
     * <code>getAllByAddress</code> to create a new NbtAddress instance. This
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 15.2K bytes
    - Viewed (0)
  5. docs/en/docs/advanced/custom-response.md

        So, it is a generator function that transfers the "generating" work to something else internally.
    
        By doing it this way, we can put it in a `with` block, and that way, ensure that it is closed after finishing.
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. cmd/metacache-server-pool.go

    package cmd
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"io"
    	"os"
    	pathutil "path"
    	"strings"
    	"sync"
    	"time"
    
    	"github.com/minio/minio/internal/grid"
    	xioutil "github.com/minio/minio/internal/ioutil"
    )
    
    func renameAllBucketMetacache(epPath string) error {
    	// Rename all previous `.minio.sys/buckets/<bucketname>/.metacache` to
    	// to `.minio.sys/tmp/` for deletion.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:23 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. src/crypto/internal/edwards25519/edwards25519.go

    type Point struct {
    	// Make the type not comparable (i.e. used with == or as a map key), as
    	// equivalent points can be represented by different Go values.
    	_ incomparable
    
    	// The point is internally represented in extended coordinates (X, Y, Z, T)
    	// where x = X/Z, y = Y/Z, and xy = T/Z per https://eprint.iacr.org/2008/522.
    	x, y, z, t field.Element
    }
    
    type incomparable [0]func()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 13 19:21:54 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. src/cmd/link/internal/arm64/asm.go

    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package arm64
    
    import (
    	"cmd/internal/objabi"
    	"cmd/internal/sys"
    	"cmd/link/internal/ld"
    	"cmd/link/internal/loader"
    	"cmd/link/internal/sym"
    	"debug/elf"
    	"fmt"
    	"log"
    )
    
    func gentext(ctxt *ld.Link, ldr *loader.Loader) {
    	initfunc, addmoduledata := ld.PrepareAddmoduledata(ctxt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/conditions.go

    		}
    	}
    	// Collect all of our unique parent references. There may be multiple when we have a route without section name,
    	// but reference a parent with multiple sections.
    	// While we process these internally for-each sectionName, in the status we are just supposed to report one merged entry
    	seen := map[k8s.ParentReference][]RouteParentResult{}
    	seenReasons := sets.New[ParentErrorReason]()
    	successCount := map[k8s.ParentReference]int{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  10. docs/changelogs/changelog_2x.md

     *  Fix: Change `MockWebServer` to use the same logic as OkHttp when determining
        whether an HTTP request permits a body.
     *  Fix: `HttpUrl` now uses the canonical form for IPv6 addresses.
     *  Fix: Use `HttpUrl` internally.
     *  Fix: Recover from Android 4.2.2 EBADF crashes.
     *  Fix: Don't crash with an `IllegalStateException` if an HTTP/2 or SPDY
        write fails, leaving the connection in an inconsistent state.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
Back to top