Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,476 for Sort (0.24 sec)

  1. pilot/pkg/networking/core/tls.go

    		// In case of a sidecar config with user defined port, if the user specified port is not the same as the
    		// service's port, then pick the service port if and only if the service has only one port. If service
    		// has multiple ports, then route to a cluster with the listener port (i.e. sidecar defined port) - the
    		// traffic will most likely blackhole.
    		port := listenPort.Port
    		if len(service.Ports) == 1 {
    			port = service.Ports[0].Port
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java

        }
      }
    
      public void testHeadSetInclusive() {
        String[] strings = NUMBER_NAMES.toArray(new String[0]);
        ImmutableSortedSet<String> set = ImmutableSortedSet.copyOf(strings);
        Arrays.sort(strings);
        for (int i = 0; i < strings.length; i++) {
          assertThat(set.headSet(strings[i], true))
              .containsExactlyElementsIn(sortedNumberNames(0, i + 1))
              .inOrder();
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/core/revived_types/partially_revived_objects.cc

            create_resource_fn->saved_concrete_func;
        if (!saved_create_resource_fn->bound_inputs().empty()) {
          // TODO(b/124045874): Support loading resource functions via a top sort
          return absl::UnimplementedError(
              "Create Resource functions with captures are currently unsupported.");
        }
      }
      return Status();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 20:11:48 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionQuery.java

    import org.opensearch.index.query.functionscore.ScoreFunctionBuilder;
    import org.opensearch.search.sort.FieldSortBuilder;
    import org.opensearch.search.sort.SortBuilders;
    import org.opensearch.search.sort.SortOrder;
    
    /**
     * @author ESFlute (using FreeGen)
     */
    public abstract class EsAbstractConditionQuery implements ConditionQuery {
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/initialization/CalculateTaskGraphBuildOperationIntegrationTest.groovy

                task.buildPath == [":", ":", ":", ":", ":", ":", ":", ":"]
                dependencies.taskPath.collect { it.sort() } == [[":compileJava"], [], [":compileJava", ":processResources"], [], [], [], [":anotherTask", ":otherTask"], []]
                dependencies.buildPath == [[":included-build"], [], [":", ":"], [], [], [], [":", ":"], []]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. tests/preload_test.go

    package tests_test
    
    import (
    	"context"
    	"encoding/json"
    	"regexp"
    	"sort"
    	"strconv"
    	"sync"
    	"testing"
    	"time"
    
    	"gorm.io/gorm"
    	"gorm.io/gorm/clause"
    	. "gorm.io/gorm/utils/tests"
    )
    
    func TestPreloadWithAssociations(t *testing.T) {
    	user := *GetUser("preload_with_associations", Config{
    		Account:   true,
    		Pets:      2,
    		Toys:      3,
    		Company:   true,
    		Manager:   true,
    		Team:      4,
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:00:47 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/typeset.go

    	}
    	assert(!comp || terms.isAll()) // comparable invariant
    	return terms, comp
    }
    
    func sortMethods(list []*Func) {
    	sort.Sort(byUniqueMethodName(list))
    }
    
    func assertSortedMethods(list []*Func) {
    	if !debug {
    		panic("assertSortedMethods called outside debug mode")
    	}
    	if !sort.IsSorted(byUniqueMethodName(list)) {
    		panic("methods not sorted")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_en.properties

    labels.maxAccessCount=Max Access Count
    labels.name=Name
    labels.numOfThread=Num of Thread
    labels.duplicateHostName=Duplicate Name
    labels.pageNumber=Page Number
    labels.password=Password
    labels.paths=Paths
    labels.port=Port
    labels.regex=Regular Expression
    labels.regularName=Regular Name
    labels.replacement=Replacement
    labels.sessionId=Session ID
    labels.sortOrder=Display Order
    labels.updatedBy=Updated by
    labels.updatedTime=Updated Time
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  9. tests/scan_test.go

    package tests_test
    
    import (
    	"reflect"
    	"sort"
    	"strings"
    	"testing"
    	"time"
    
    	"gorm.io/gorm"
    	. "gorm.io/gorm/utils/tests"
    )
    
    type PersonAddressInfo struct {
    	Person  *Person  `gorm:"embedded"`
    	Address *Address `gorm:"embedded"`
    }
    
    func TestScan(t *testing.T) {
    	user1 := User{Name: "ScanUser1", Age: 1}
    	user2 := User{Name: "ScanUser2", Age: 10}
    	user3 := User{Name: "ScanUser3", Age: 20}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. src/main/resources/fess_label.properties

    labels.maxAccessCount=Max Access Count
    labels.name=Name
    labels.numOfThread=Num of Thread
    labels.duplicateHostName=Duplicate Name
    labels.pageNumber=Page Number
    labels.password=Password
    labels.paths=Paths
    labels.port=Port
    labels.regex=Regular Expression
    labels.regularName=Regular Name
    labels.replacement=Replacement
    labels.sessionId=Session ID
    labels.sortOrder=Display Order
    labels.updatedBy=Updated by
    labels.updatedTime=Updated Time
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
Back to top