Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 195 for bsearch (0.32 sec)

  1. pkg/kubelet/network/dns/dns_test.go

    		{"search foo bar", []string{}, []string{"foo", "bar"}, []string{}, false},
    		{"search foo. bar", []string{}, []string{"foo", "bar"}, []string{}, false},
    		{"search foo bar bat\n", []string{}, []string{"foo", "bar", "bat"}, []string{}, false},
    		{"search foo\nsearch bar", []string{}, []string{"bar"}, []string{}, false},
    		{"nameserver 1.2.3.4\nsearch foo bar", []string{"1.2.3.4"}, []string{"foo", "bar"}, []string{}, false},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/main.go

    // Main is the main entry point for the linker code.
    func Main(arch *sys.Arch, theArch Arch) {
    	log.SetPrefix("link: ")
    	log.SetFlags(0)
    	telemetry.Start()
    	telemetry.Inc("link/invocations")
    
    	thearch = theArch
    	ctxt := linknew(arch)
    	ctxt.Bso = bufio.NewWriter(os.Stdout)
    
    	// For testing behavior of go command when tools crash silently.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. internal/config/identity/ldap/help.go

    		},
    		config.HelpKV{
    			Key:         UserDNSearchBaseDN,
    			Description: `";" separated list of user search base DNs e.g. "dc=myldapserver,dc=com"` + defaultHelpPostfix(UserDNSearchBaseDN),
    			Optional:    true,
    			Type:        "list",
    		},
    		config.HelpKV{
    			Key:         UserDNSearchFilter,
    			Description: `Search filter to lookup user DN` + defaultHelpPostfix(UserDNSearchFilter),
    			Optional:    true,
    			Type:        "string",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. docs/sts/ldap.md

    ```
    MINIO_IDENTITY_LDAP_USER_DN_SEARCH_BASE_DN*  (list)      ";" separated list of user search base DNs e.g. "dc=myldapserver,dc=com"
    MINIO_IDENTITY_LDAP_USER_DN_SEARCH_FILTER*   (string)    Search filter to lookup user DN
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/NMToolFixture.groovy

            return new NMToolFixture(environments)
        }
    
        private findExe(String exe) {
            // *nix OS correctly handle search inside the process's PATH environment variable
            if (!OperatingSystem.current().windows) {
                return [exe]
            }
    
            // Windows need to use cmd /c to correctly search inside the process's PATH environment variable
            return ["cmd.exe", "/d", "/c", exe]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. src/index/suffixarray/suffixarray.go

    func (x *Index) lookupAll(s []byte) ints {
    	// find matching suffix index range [i:j]
    	// find the first index where s would be the prefix
    	i := sort.Search(x.sa.len(), func(i int) bool { return bytes.Compare(x.at(i), s) >= 0 })
    	// starting at i, find the first index at which s is not a prefix
    	j := i + sort.Search(x.sa.len()-i, func(j int) bool { return !bytes.HasPrefix(x.at(j+i), s) })
    	return x.sa.slice(i, j)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

      }
    
      // Capture Enter key in the search box to make it pivot instead of focus.
      function handleSearchKey(e) {
        if (e.key != 'Enter') return;
        e.stopImmediatePropagation();  // Disable normal enter key handling
        const val = search.value;
        try {
          new RegExp(search.value);
        } catch (error) {
          return;  // TODO: Display error state in search box
        }
        switchPivots(val);
      }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  8. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/projectStructure/KotlinResolutionScopeProvider.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.platform.projectStructure
    
    import com.intellij.openapi.project.Project
    import com.intellij.psi.search.GlobalSearchScope
    import org.jetbrains.kotlin.analysis.api.platform.KotlinPlatformComponent
    import org.jetbrains.kotlin.analysis.project.structure.KtModule
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 866 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

        )
        module_str = self._extract_first_xla_call_module_op(
            self._output_saved_model_path
        )
        self.assertTrue(re.search('stablehlo.dot_general.*xi8>', module_str))
        if bias_fn:
          self.assertTrue(re.search('stablehlo.add.*xi32>', module_str))
        # Consider if there is a way to check if activation fusion is properly
        # done in MLIR level.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  10. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/api/standalone/KotlinStaticPackagePartProviderFactory.kt

     * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
     */
    
    package org.jetbrains.kotlin.analysis.api.standalone
    
    import com.intellij.psi.search.GlobalSearchScope
    import com.intellij.util.containers.ContainerUtil
    import org.jetbrains.kotlin.analysis.api.platform.packages.KotlinPackagePartProviderFactory
    import org.jetbrains.kotlin.load.kotlin.PackagePartProvider
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 985 bytes
    - Viewed (0)
Back to top