Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 122 for Street (0.16 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/Helpers.java

          }
        }
      }
    
      /**
       * Returns a collection that simulates concurrent modification by having its size method return
       * incorrect values. This is useful for testing methods that must treat the return value from
       * size() as a hint only.
       *
       * @param delta the difference between the true size of the collection and the values returned by
       *     the size method
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. internal/config/identity/openid/openid.go

    		// by clearing the values. With multiple providers, we support
    		// individually enabling/disabling provider configurations. If
    		// the enable parameter's value is non-empty, we use that
    		// setting, otherwise we treat it as enabled if some important
    		// parameters are non-empty.
    		var (
    			cfgEnableVal        = getCfgVal(config.Enable)
    			isExplicitlyEnabled = cfgEnableVal != ""
    		)
    
    		var enabled bool
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  3. pilot/pkg/xds/delta.go

    	if res.Contains("*") {
    		wildcard = true
    		res.Delete("*")
    	}
    	// "if the client sends a request but has never explicitly subscribed to any resource names, the
    	// server should treat that identically to how it would treat the client having explicitly
    	// subscribed to *"
    	// NOTE: this means you cannot subscribe to nothing, which is useful for on-demand loading; to workaround this
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  4. src/runtime/type.go

    // one day start moving heap memory, in which case there is no stable
    // offset that can be defined.
    //
    // To provide stable offsets, we add pin *rtype objects in a global map
    // and treat the offset as an identifier. We use negative offsets that
    // do not overlap with any compile-time module offsets.
    //
    // Entries are created by reflect.addReflectOff.
    var reflectOffs struct {
    	lock mutex
    	next int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. go.mod

    	github.com/go-openapi/jsonreference v0.20.2 // indirect
    	github.com/go-openapi/swag v0.22.4 // indirect
    	github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
    	github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
    	github.com/google/btree v1.0.1 // indirect
    	github.com/google/pprof v0.0.0-20240525223248-4bfdf5a9a2af // indirect
    	github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
    	github.com/gorilla/websocket v1.5.0 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/collect/testing/Helpers.java

          }
        }
      }
    
      /**
       * Returns a collection that simulates concurrent modification by having its size method return
       * incorrect values. This is useful for testing methods that must treat the return value from
       * size() as a hint only.
       *
       * @param delta the difference between the true size of the collection and the values returned by
       *     the size method
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. go.mod

    	github.com/gobwas/glob v0.2.3 // indirect
    	github.com/goccy/go-json v0.10.2 // indirect
    	github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
    	github.com/google/btree v1.1.2 // indirect
    	github.com/google/gnostic-models v0.6.8 // indirect
    	github.com/google/pprof v0.0.0-20240424215950-a892ee059fd6 // indirect
    	github.com/grafana/regexp v0.0.0-20221122212121-6b5c0a4cb7fd // indirect
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. src/encoding/csv/reader.go

    }
    
    // ReadAll reads all the remaining records from r.
    // Each record is a slice of fields.
    // A successful call returns err == nil, not err == [io.EOF]. Because ReadAll is
    // defined to read until EOF, it does not treat end of file as an error to be
    // reported.
    func (r *Reader) ReadAll() (records [][]string, err error) {
    	for {
    		record, err := r.readRecord(nil)
    		if err == io.EOF {
    			return records, nil
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:32:28 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. pkg/scheduler/scheduler.go

    	percentageOfNodesToScore          int32
    	podInitialBackoffSeconds          int64
    	podMaxBackoffSeconds              int64
    	podMaxInUnschedulablePodsDuration time.Duration
    	// Contains out-of-tree plugins to be merged with the in-tree registry.
    	frameworkOutOfTreeRegistry frameworkruntime.Registry
    	profiles                   []schedulerapi.KubeSchedulerProfile
    	extenders                  []schedulerapi.Extender
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  10. src/net/net.go

    		return ok && t.Timeout()
    	}
    	t, ok := e.Err.(timeout)
    	return ok && t.Timeout()
    }
    
    type temporary interface {
    	Temporary() bool
    }
    
    func (e *OpError) Temporary() bool {
    	// Treat ECONNRESET and ECONNABORTED as temporary errors when
    	// they come from calling accept. See issue 6163.
    	if e.Op == "accept" && isConnError(e.Err) {
    		return true
    	}
    
    	if ne, ok := e.Err.(*os.SyscallError); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
Back to top