Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 426 for west (0.05 sec)

  1. tests/integration/iop-ambient-test-defaults.yaml

              DNS_PROXY_ADDR: "0.0.0.0:15053"
          accessLogFile: /dev/stdout
          # Just used to exclude for testing
          discoverySelectors:
          - matchExpressions:
            - key: istio.io/test-exclude-namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 952 bytes
    - Viewed (0)
  2. cmd/storage-rest-server.go

    		_, err := io.ReadFull(respBody, tmp[:])
    		if err != nil {
    			return err
    		}
    		// Check if we have a response ready or a filler byte.
    		switch tmp[0] {
    		case 0:
    			// 0 is unbuffered, copy the rest.
    			_, err := io.CopyBuffer(w, respBody, buf)
    			if err == io.EOF {
    				return nil
    			}
    			return err
    		case 1:
    			errorText, err := io.ReadAll(respBody)
    			if err != nil {
    				return err
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  3. cmd/storage-rest-common.go

    Anis Eleuch <******@****.***> 1718034687 +0100
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/inline.go

    	if i+1 < len(s) {
    		switch s[i+1] {
    		case '(':
    			// Inline link - [Text](Dest Title), with Title omitted or both Dest and Title omitted.
    			i := skipSpace(s, i+2)
    			var dest, title string
    			var titleChar byte
    			var corner bool
    			if i < len(s) && s[i] != ')' {
    				var ok bool
    				dest, i, ok = parseLinkDest(s, i)
    				if !ok {
    					break
    				}
    				i = skipSpace(s, i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  5. scan.go

    	)
    
    	db.RowsAffected = 0
    
    	switch dest := db.Statement.Dest.(type) {
    	case map[string]interface{}, *map[string]interface{}:
    		if initialized || rows.Next() {
    			columnTypes, _ := rows.ColumnTypes()
    			prepareValues(values, db, columnTypes, columns)
    
    			db.RowsAffected++
    			db.AddError(rows.Scan(values...))
    
    			mapValue, ok := dest.(map[string]interface{})
    			if !ok {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. platforms/core-runtime/functional/src/main/java/org/gradle/internal/collect/PersistentList.java

            return PersistentList.<T>of().plus(first);
        }
    
        @SafeVarargs
        public static <T> PersistentList<T> of(T first, T second, T... rest) {
            PersistentList<T> result = of();
            for (int i = rest.length - 1; i >= 0; i--) {
                result = result.plus(rest[i]);
            }
            return result.plus(second).plus(first);
        }
    
        @Override
        public abstract void forEach(Consumer<? super T> consumer);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. pilot/pkg/model/gateway.go

    		portName, rest, ok = strings.Cut(rest, ".")
    		if !ok {
    			return
    		}
    		gwName, gwNs, ok := strings.Cut(rest, ".")
    		if !ok {
    			return
    		}
    		gatewayName = gwNs + "/" + gwName
    	}
    	return
    }
    
    // convert ./host to currentNamespace/Host
    // */host to just host
    // */* to just *
    func sanitizeServerHostNamespace(server *networking.Server, namespace string) {
    	for i, h := range server.Hosts {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. pilot/pkg/networking/util/util.go

    // If the metadata contains "tunnel.destination" that will become the "endpointId" to prevent deduplication.
    func BuildInternalEndpoint(dest string, meta *core.Metadata) []*endpoint.LocalityLbEndpoints {
    	llb := []*endpoint.LocalityLbEndpoints{{
    		LbEndpoints: []*endpoint.LbEndpoint{BuildInternalLbEndpoint(dest, meta)},
    	}}
    	return llb
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    			}
    		} else if !reflect.DeepEqual(finalizers, test.desiredFinalizers) {
    			t.Errorf("%s/%s: want %#v, got %#v", test.requestInfo.APIGroup, test.requestInfo.APIVersion,
    				test.desiredFinalizers, finalizers)
    		}
    	}
    }
    
    func TestMarkAsDeleting(t *testing.T) {
    	now := time.Now()
    	soon := now.Add(time.Second)
    	past := now.Add(-time.Second)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  10. callbacks/query.go

    					queryFields = db.Statement.ReflectValue.Type().Elem() != db.Statement.Schema.ModelType
    				}
    			}
    
    			if queryFields {
    				stmt := gorm.Statement{DB: db}
    				// smaller struct
    				if err := stmt.Parse(db.Statement.Dest); err == nil && (db.QueryFields || stmt.Schema.ModelType != db.Statement.Schema.ModelType) {
    					clauseSelect.Columns = make([]clause.Column, len(stmt.Schema.DBNames))
    
    					for idx, dbName := range stmt.Schema.DBNames {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:51:44 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top