Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 128 of 128 for input1 (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    		}
    	}
    
    	// Ensure there is enough budget for slow processing since
    	// the entire watch cache is going to be served through the
    	// interval and events won't be popped from the cacheWatcher's
    	// input channel until much later.
    	cacher.dispatchTimeoutBudget.returnUnused(100 * time.Millisecond)
    
    	// We define a custom index validator such that the interval is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    		}
    	}
    	return patch, serverOnly, nil
    }
    
    // Removes directives from an object and returns value to use instead and whether
    // or not the field/index should even be kept
    // May modify input
    func removeDirectives(obj interface{}) (interface{}, bool) {
    	if obj == nil {
    		return obj, true
    	} else if typedV, ok := obj.(map[string]interface{}); ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/conversion.go

    		}
    		return configs[i].CreationTimestamp.Before(configs[j].CreationTimestamp)
    	})
    }
    
    // convertResources is the top level entrypoint to our conversion logic, computing the full state based
    // on KubernetesResources inputs.
    func convertResources(r GatewayResources) IstioResources {
    	// sort HTTPRoutes by creation timestamp and namespace/name
    	sortConfigByCreationTime(r.HTTPRoute)
    	sortConfigByCreationTime(r.GRPCRoute)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  4. cmd/xl-storage.go

    		return RawFileInfo{}, err
    	}
    
    	buf, _, err := s.readRaw(ctx, volume, volumeDir, filePath, readData)
    	return RawFileInfo{
    		Buf: buf,
    	}, err
    }
    
    // ReadOptions optional inputs for ReadVersion
    type ReadOptions struct {
    	ReadData bool
    	Healing  bool
    }
    
    // ReadVersion - reads metadata and returns FileInfo at path `xl.meta`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  5. src/go/parser/parser.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package parser implements a parser for Go source files. Input may be
    // provided in a variety of forms (see the various Parse* functions); the
    // output is an abstract syntax tree (AST) representing the Go source. The
    // parser is invoked through one of the Parse* functions.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/load.go

    // Normally the root packages are exactly those matching the named pattern
    // arguments. However, for the "all" meta-pattern, the final set of packages is
    // computed from the package import graph, and therefore cannot be an initial
    // input to loading that graph. Instead, the root packages for the "all" pattern
    // are those contained in the main module, and allPatternIsRoot parameter to the
    // loader instructs it to dynamically expand those roots to the full "all"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. src/net/http/transport.go

    	newReq := *req
    	newReq.Body = &readTrackingBody{ReadCloser: body}
    	return &newReq, nil
    }
    
    // shouldRetryRequest reports whether we should retry sending a failed
    // HTTP request on a new connection. The non-nil input error is the
    // error from roundTrip.
    func (pc *persistConn) shouldRetryRequest(req *Request, err error) bool {
    	if http2isNoCachedConnError(err) {
    		// Issue 16582: if the user started a bunch of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    //   res = POR t1, t2   => fixes x==-0,y==+0 case
    // Note that this trick depends on the special property that (NaN OR x) produces a NaN (although
    // it might not produce the same NaN as the input).
    (Min(64|32)F <t> x y) => (POR (MINS(D|S) <t> (MINS(D|S) <t> x y) x) (MINS(D|S) <t> x y))
    // Floating-point max is even trickier. Punt to using min instead.
    // max(x,y) == -min(-x,-y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
Back to top