Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 4,335 for look (0.04 sec)

  1. pkg/util/iptree/iptree.go

    	// mask the address for sanity
    	address := prefix.Masked().Addr()
    	// we can't check longer than the request mask
    	mask := prefix.Bits()
    	// walk the network bits of the prefix
    	for bitPosition < mask {
    		// Look for a child checking the bit position after the mask
    		n = n.child[getBitFromAddr(address, bitPosition+1)]
    		if n == nil {
    			return zeroT, false
    		}
    		// check we are in the right branch comparing the suffixes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/RepositoryHandler.java

        /**
         * Adds and configures a repository which will look for dependencies in a number of local directories.
         *
         * @param action The action to execute to configure the repository.
         * @return The repository.
         */
        FlatDirectoryArtifactRepository flatDir(Action<? super FlatDirectoryArtifactRepository> action);
    
        /**
         * Adds a repository which looks in Gradle Central Plugin Repository for dependencies.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 03:42:11 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/testdata/deadcode/ifacemethod6.go

    // Copyright 2023 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.
    
    // This test only uses MethodByName() with constant names
    // of methods to look up. These methods need to be kept,
    // but other methods must be eliminated.
    
    package main
    
    import "reflect"
    
    type S int
    
    func (s S) M() { println("S.M") }
    
    func (s S) N() { println("S.N") }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:07:26 UTC 2023
    - 666 bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/io/FilesCreateTempDirTest.java

           * to test it.
           */
          return;
        }
    
        /*
         * Only under Windows (or hypothetically when running with some other non-POSIX, ACL-based
         * filesystem) does our prod code look up the username. Thus, this test doesn't necessarily test
         * anything interesting under most environments. Still, we can run it (except for Android, at
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 06 17:11:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoryContentFilteringIntegrationTest.groovy

                }
            """
    
            when:
            // looks for the Maven pom file because it's a snapshot
            snapshotModule.metaData.expectGet() // gets the maven-metadata.xml file to get the latest snapshot version
            snapshotModule.pom.expectGet()
            snapshotModule.artifact.expectGet()
    
            // but doesn't look for the release because it's not a snapshot
            release.ivy.expectGet()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  6. src/image/jpeg/huffman.go

    const maxNCodes = 256
    
    // lutSize is the log-2 size of the Huffman decoder's look-up table.
    const lutSize = 8
    
    // huffman is a Huffman decoder, specified in section C.
    type huffman struct {
    	// length is the number of codes in the tree.
    	nCodes int32
    	// lut is the look-up table for the next lutSize bits in the bit-stream.
    	// The high 8 bits of the uint16 are the encoded value. The low 8 bits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/filesystem/plugins/posix/posix_filesystem.h

    #include "tensorflow/c/experimental/filesystem/filesystem_interface.h"
    
    // Initialize the POSIX filesystem.
    //
    // In general, the `TF_InitPlugin` symbol doesn't need to be exposed in a header
    // file, since the plugin registration will look for the symbol in the DSO file
    // that provides the filesystem functionality. However, the POSIX filesystem
    // needs to be statically registered in some tests and utilities for building
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 20 16:42:12 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/filesystem/plugins/gcs/expiring_lru_cache.h

      bool Lookup(const std::string& key, T* value) {
        if (max_age_ == 0) {
          return false;
        }
        absl::MutexLock lock(&mu_);
        return LookupLocked(key, value);
      }
    
      typedef std::function<void(const std::string&, T*, TF_Status*)> ComputeFunc;
    
      /// Look up the entry with key `key` and copy it to `value` if found. If not
      /// found, call `compute_func`. If `compute_func` set `status` to `TF_OK`,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 09 19:31:22 UTC 2020
    - 6.3K bytes
    - Viewed (0)
  9. test/fixedbugs/issue19482.go

    // when the struct contained a field named _.
    
    package p
    
    type T struct {
    	_ string
    }
    
    func ok() {
    	var x = T{"check"}
    	_ = x
    	_ = T{"et"}
    }
    
    var (
    	y = T{"stare"}
    	w = T{_: "look"} // ERROR "invalid field name _ in struct initializer|expected struct field name|unknown field _ in struct literal of type T"
    	_ = T{"page"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 21:59:09 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/lookup_test.go

    	}
    
    	conf := Config{
    		Importer: defaultImporter(),
    	}
    
    	pkg, err := conf.Check("http", files, nil)
    	if err != nil {
    		b.Fatal(err)
    	}
    
    	scope := pkg.Scope()
    	names := scope.Names()
    
    	// Look up an arbitrary name for each type referenced in the package scope.
    	lookup := func() {
    		for _, name := range names {
    			typ := scope.Lookup(name).Type()
    			LookupFieldOrMethod(typ, true, pkg, "m")
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 15:31:35 UTC 2022
    - 1.2K bytes
    - Viewed (0)
Back to top