Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,023 for search_ (0.29 sec)

  1. internal/config/identity/ldap/ldap.go

    		l.LDAP.GetGroupSearchBaseDistNames(), nil)
    }
    
    // GetValidatedDNUnderBaseDN checks if the given DN exists in the LDAP
    // directory.
    //
    // The `NormDN` value returned here in the search result may not be equal to the
    // input DN, as LDAP equality is not a simple Golang string equality. However,
    // we assume the value returned by the LDAP server is canonical. Additionally,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 25 13:43:06 UTC 2024
    - 10.3K bytes
    - Viewed (1)
  2. src/unicode/letter_test.go

    func TestCalibrate(t *testing.T) {
    	if !*calibrate {
    		return
    	}
    
    	if runtime.GOARCH == "amd64" {
    		fmt.Printf("warning: running calibration on %s\n", runtime.GOARCH)
    	}
    
    	// Find the point where binary search wins by more than 10%.
    	// The 10% bias gives linear search an edge when they're close,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:46:03 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  3. src/os/exec/lp_windows.go

    // license that can be found in the LICENSE file.
    
    package exec
    
    import (
    	"errors"
    	"io/fs"
    	"os"
    	"path/filepath"
    	"strings"
    	"syscall"
    )
    
    // ErrNotFound is the error resulting if a path search failed to find an executable file.
    var ErrNotFound = errors.New("executable file not found in %PATH%")
    
    func chkStat(file string) error {
    	d, err := os.Stat(file)
    	if err != nil {
    		return err
    	}
    	if d.IsDir() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/MetadataSourcesResolveIntegrationTest.groovy

            resolve.expectGraph {
                root(":", ":test:") {
                    edge("org.test:projectA:1.+", "org.test:projectA:1.2")
                }
            }
        }
    
        def "will only search for defined metadata sources"() {
            def metadataSource = isGradleMetadataPublished() ? "gradleMetadata" : useIvy() ? "ivyDescriptor" : "mavenPom"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. src/internal/bytealg/indexbyte_amd64.s

    	// Find first set bit, if any.
    	BSFL	DX, DX
    	JNZ	ssesuccess
    	// Advance to next block.
    	ADDQ	$16, DI
    sseloopentry:
    	CMPQ	DI, AX
    	JB	sseloop
    
    	// Search the last 16-byte chunk. This chunk may overlap with the
    	// chunks we've already searched, but that's ok.
    	MOVQ	AX, DI
    	MOVOU	(AX), X1
    	PCMPEQB	X0, X1
    	PMOVMSKB X1, DX
    	BSFL	DX, DX
    	JNZ	ssesuccess
    
    failure:
    	MOVQ $-1, (R8)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 01 19:06:01 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

     *  
     *  If the return value is NULL and framework error state is CUE_SUCCESS, then 
     *  the search simply failed to find the specified name.  Use CU_get_test_at_pos() 
     *  to retrieve a test by position rather than name.
     *
     *  @param pSuite  Pointer to the suite to search (non-NULL).
     *  @param strName The name of the test to search for (non-NULL).
     *  @return Returns a pointer to the test, or NULL if not found or an error occurred.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionAggregation.java

    import org.opensearch.search.aggregations.bucket.terms.TermsAggregationBuilder;
    import org.opensearch.search.aggregations.metrics.AvgAggregationBuilder;
    import org.opensearch.search.aggregations.metrics.CardinalityAggregationBuilder;
    import org.opensearch.search.aggregations.metrics.ExtendedStatsAggregationBuilder;
    import org.opensearch.search.aggregations.metrics.MaxAggregationBuilder;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

                    return true;
                }
            }
            return false;
        }
    
        /**
         * Searches an artifact of the given group and artifact identifiers, and returns its path
         *
         * @param group the group identifier to search
         * @param artifact the artifact identifier to search
         * @return path to the desired artifact, or {@code null} if not found
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. src/runtime/mpagealloc.go

    // It uses p.searchAddr to prune its search and assumes that no palloc chunks
    // below chunkIndex(p.searchAddr) contain any free memory at all.
    //
    // find also computes and returns a candidate p.searchAddr, which may or
    // may not prune more of the address space than p.searchAddr already does.
    // This candidate is always a valid p.searchAddr.
    //
    // find represents the slow path and the full radix tree search.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionAggregation.java

    import org.opensearch.search.aggregations.bucket.terms.TermsAggregationBuilder;
    import org.opensearch.search.aggregations.metrics.AvgAggregationBuilder;
    import org.opensearch.search.aggregations.metrics.CardinalityAggregationBuilder;
    import org.opensearch.search.aggregations.metrics.ExtendedStatsAggregationBuilder;
    import org.opensearch.search.aggregations.metrics.MaxAggregationBuilder;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top