Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 486 for spring (0.17 sec)

  1. pilot/pkg/networking/core/route/route_test.go

    								Add:    map[string]string{"x-route-req-add-blue": "v2", ":authority": "blue.bar.extsvc.com"},
    								Remove: []string{"x-route-req-remove-blue"},
    							},
    							Response: &networking.Headers_HeaderOperations{
    								Set:    map[string]string{"x-route-resp-set-blue": "v1"},
    								Add:    map[string]string{"x-route-resp-add-blue": "v2"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        private Map<String, Artifact> reportArtifactMap;
    
        private Set<Artifact> extensionArtifacts;
    
        private Map<String, Artifact> extensionArtifactMap;
    
        private Map<String, Artifact> managedVersionMap;
    
        private Map<String, MavenProject> projectReferences = new HashMap<>();
    
        private boolean executionRoot;
    
        private File parentFile;
    
        private Map<String, Object> context;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  3. pkg/apis/flowcontrol/validation/validation_test.go

    				Verbs:        []string{flowcontrol.VerbAll},
    				APIGroups:    []string{flowcontrol.APIGroupAll},
    				Resources:    []string{flowcontrol.ResourceAll},
    				ClusterScope: true,
    				Namespaces:   []string{flowcontrol.NamespaceEvery},
    			}},
    			NonResourceRules: []flowcontrol.NonResourcePolicyRule{{
    				Verbs:           []string{flowcontrol.VerbAll},
    				NonResourceURLs: []string{"/"},
    			}},
    		}},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 54.7K bytes
    - Viewed (0)
  4. src/strings/strings_test.go

    	{abcd, "a", 0, nil},
    	{abcd, "a", -1, []string{"", "bcd"}},
    	{abcd, "z", -1, []string{"abcd"}},
    	{commas, ",", -1, []string{"1", "2", "3", "4"}},
    	{dots, "...", -1, []string{"1", ".2", ".3", ".4"}},
    	{faces, "☹", -1, []string{"☺☻", ""}},
    	{faces, "~", -1, []string{faces}},
    	{"1 2 3 4", " ", 3, []string{"1", "2", "3 4"}},
    	{"1 2", " ", 3, []string{"1", "2"}},
    	{"", "T", math.MaxInt / 4, []string{""}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  5. cmd/test-utils_test.go

    func getListBucketURL(endPoint string) string {
    	return makeTestTargetURL(endPoint, "", "", url.Values{})
    }
    
    // return URL for HEAD on the bucket.
    func getHEADBucketURL(endPoint, bucketName string) string {
    	return makeTestTargetURL(endPoint, bucketName, "", url.Values{})
    }
    
    // return URL for deleting the bucket.
    func getDeleteBucketURL(endPoint, bucketName string) string {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/conversion.go

    	listenerConditions := map[string]*condition{
    		string(k8s.ListenerConditionAccepted): {
    			reason:  string(k8s.ListenerReasonAccepted),
    			message: "No errors found",
    		},
    		string(k8s.ListenerConditionProgrammed): {
    			reason:  string(k8s.ListenerReasonProgrammed),
    			message: "No errors found",
    		},
    		string(k8s.ListenerConditionConflicted): {
    			reason:  string(k8s.ListenerReasonNoConflicts),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. src/cmd/internal/testdir/testdir_test.go

    }
    
    func compileInDir(runcmd runCmd, dir string, flags []string, importcfg string, pkgname string, names ...string) (out []byte, err error) {
    	if importcfg == "" {
    		importcfg = stdlibImportcfgFile()
    	}
    	cmd := []string{goTool, "tool", "compile", "-e", "-D", "test", "-importcfg=" + importcfg}
    	if pkgname == "main" {
    		cmd = append(cmd, "-p=main")
    	} else {
    		pkgname = path.Join("test", strings.TrimSuffix(names[0], ".go"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  8. pkg/kubelet/server/server_test.go

    	getAttachCheck      func(string, types.UID, string, remotecommandserver.Options)
    	getPortForwardCheck func(string, string, types.UID, portforward.V4Options)
    
    	containerLogsFunc func(ctx context.Context, podFullName, containerName string, logOptions *v1.PodLogOptions, stdout, stderr io.Writer) error
    	hostnameFunc      func() string
    	resyncInterval    time.Duration
    	loopEntryTime     time.Time
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  9. src/encoding/xml/marshal_test.go

    type EmbedA struct {
    	EmbedC
    	EmbedB EmbedB
    	FieldA string
    	embedD
    }
    
    type EmbedB struct {
    	FieldB string
    	*EmbedC
    }
    
    type EmbedC struct {
    	FieldA1 string `xml:"FieldA>A1"`
    	FieldA2 string `xml:"FieldA>A2"`
    	FieldB  string
    	FieldC  string
    }
    
    type embedD struct {
    	fieldD string
    	FieldE string // Promoted and visible when embedD is embedded.
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsScheduledJobCA.java

            }
        }
    
        public void scriptedMetric(String name, ConditionOptionCall<ScriptedMetricAggregationBuilder> opLambda) {
            ScriptedMetricAggregationBuilder builder = regScriptedMetricA(name);
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void topHits(String name, ConditionOptionCall<TopHitsAggregationBuilder> opLambda) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 89.1K bytes
    - Viewed (0)
Back to top