Search Options

Results per page
Sort
Preferred Languages
Advance

Results 891 - 900 of 5,758 for AsString (0.06 sec)

  1. src/test/java/org/codelibs/fess/helper/RoleQueryHelperTest.java

            roleQueryHelperImpl.processHeader(request, roleSet);
            return roleSet;
        }
    
        private Set<String> buildByCookie(final RoleQueryHelper roleQueryHelperImpl, final HttpServletRequest request) {
            Set<String> roleSet = new HashSet<>();
            roleQueryHelperImpl.processCookie(request, roleSet);
            return roleSet;
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  2. compat/maven-artifact/src/main/java/org/apache/maven/artifact/InvalidArtifactRTException.java

     */
    public class InvalidArtifactRTException extends RuntimeException {
    
        private final String groupId;
        private final String artifactId;
        private final String version;
        private final String type;
        private final String baseMessage;
    
        public InvalidArtifactRTException(String groupId, String artifactId, String version, String type, String message) {
            this.groupId = groupId;
            this.artifactId = artifactId;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/core/io/TraverserUtilTest.java

            assertThat(traverser.isExistClass(DummyTest.class.getName()), is(true));
            assertThat(traverser.isExistClass(TestCase.class.getName()), is(not(true)));
    
            final Set<String> set = new HashSet<String>();
            traverser.forEach((ClassHandler) (packageName, shortClassName) -> set.add(ClassUtil.concatName(packageName, shortClassName)));
            assertThat(set.size() > 0, is(true));
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. istioctl/pkg/authz/listener.go

    		return
    	}
    
    	actionToPolicy := map[rbacpb.RBAC_Action]map[string]struct{}{}
    	policyToRule := map[string]map[string]struct{}{}
    
    	addPolicy := func(action rbacpb.RBAC_Action, name string, rule string) {
    		if actionToPolicy[action] == nil {
    			actionToPolicy[action] = map[string]struct{}{}
    		}
    		if policyToRule[name] == nil {
    			policyToRule[name] = map[string]struct{}{}
    		}
    		actionToPolicy[action][name] = struct{}{}
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Sep 11 15:29:30 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. istioctl/pkg/proxystatus/proxystatus_test.go

    type execTestCase struct {
    	args     []string
    	revision string
    	noIstiod bool
    
    	// Typically use one of the three
    	expectedOutput string // Expected constant output
    	expectedString string // String output is expected to contain
    
    	wantException bool
    }
    
    func TestProxyStatus(t *testing.T) {
    	cases := []execTestCase{
    		{ // case 0, with no Isitod instance
    			args:           []string{},
    			noIstiod:       true,
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Mar 15 08:28:50 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. cmd/api-resources_test.go

    		values                    url.Values
    		prefix, marker, delimiter string
    		maxKeys                   int
    		encodingType              string
    	}{
    		{
    			values: url.Values{
    				"prefix":        []string{"photos/"},
    				"marker":        []string{"test"},
    				"delimiter":     []string{SlashSeparator},
    				"max-keys":      []string{"100"},
    				"encoding-type": []string{"gzip"},
    			},
    			prefix:       "photos/",
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  7. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/Parameter.java

     */
    public class Parameter implements Cloneable {
        private String alias;
    
        private String name;
    
        private String type;
    
        private boolean required;
    
        private boolean editable = true;
    
        private String description;
    
        private String expression;
    
        private String deprecated;
    
        private String defaultValue;
    
        private String implementation;
    
        private Requirement requirement;
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. cmd/local-locker.go

    //
    //msgp:ignore localLocker
    type localLocker struct {
    	mutex   sync.Mutex
    	lockMap map[string][]lockRequesterInfo
    	lockUID map[string]string // UUID -> resource map.
    }
    
    func (l *localLocker) String() string {
    	return globalEndpoints.Localhost()
    }
    
    func (l *localLocker) canTakeLock(resources ...string) bool {
    	for _, resource := range resources {
    		_, lockTaken := l.lockMap[resource]
    		if lockTaken {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Jul 24 10:24:01 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuildingResult.java

    @Deprecated(since = "4.0.0")
    class DefaultModelBuildingResult implements ModelBuildingResult {
        private Model fileModel;
    
        private Model effectiveModel;
    
        private List<String> modelIds;
    
        private Map<String, Model> rawModels;
    
        private Map<String, List<Profile>> activePomProfiles;
    
        private List<Profile> activeExternalProfiles;
    
        private List<ModelProblem> problems;
    
        DefaultModelBuildingResult() {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. internal/store/store_test.go

    			t.Fatalf("case[%v]: Expected key.ItemCount: %v, got %v", i, testCase.expectedKey.ItemCount, key.ItemCount)
    		}
    		if testCase.expectedKey.String() != key.String() {
    			t.Fatalf("case[%v]: Expected key.String(): %v, got %v", i, testCase.expectedKey.String(), key.String())
    		}
    	}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Sep 06 23:06:30 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top