Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,017 for Avery (0.47 sec)

  1. tensorflow/compiler/mlir/lite/transforms/reduce_while_operands.cc

    // It cannot be removed by loop-invariant-code-motion pass since every value
    // is used and changed in the while loop.
    
    // Moreover, we require
    // 1. no implicit argument: For every operation in whileOp, all dependent values
    //    (except for constant) are explicitly passed in.
    // 2. no side effect: Every operation inside whileOp can be safely
    //    remove when it is useEmpty().
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Lists.java

              checkElementIndex(index, size());
              return rest[index - 2];
          }
        }
    
        @J2ktIncompatible private static final long serialVersionUID = 0;
      }
    
      /**
       * Returns every possible list that can be formed by choosing one element from each of the given
       * lists in order; the "n-ary <a href="http://en.wikipedia.org/wiki/Cartesian_product">Cartesian
       * product</a>" of the lists. For example:
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/echotest/run.go

    			testFn(ctx, fromCluster)
    		})
    	}
    }
    
    // RunToN will generate nested subtests for every instance in every deployment subsets of the full set of deployments,
    // such that every deployment is a destination at least once. To create as few subtests as possible, the same deployment
    // may appear as a target in multiple subtests.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 22:08:42 UTC 2023
    - 13K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/wait/poll.go

    		return ErrWaitTimeout
    	default:
    		return waitForWithContext(ctx, wait, condition)
    	}
    }
    
    // poller returns a WaitFunc that will send to the channel every interval until
    // timeout has elapsed and then closes the channel.
    //
    // Over very short intervals you may receive no ticks before the channel is
    // closed. A timeout of 0 is interpreted as an infinity, and in such a case
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 06:13:35 UTC 2023
    - 14K bytes
    - Viewed (0)
  5. build/lib/release.sh

            client_bins=("${KUBE_CLIENT_BINARIES_WIN[@]}")
          fi
    
          # This fancy expression will expand to prepend a path
          # (${LOCAL_OUTPUT_BINPATH}/${platform}/) to every item in the
          # client_bins array.
          cp "${client_bins[@]/#/${LOCAL_OUTPUT_BINPATH}/${platform}/}" \
            "${release_stage}/client/bin/"
    
          kube::release::clean_cruft
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/audit/types.go

    // PolicyRule maps requests based off metadata to an audit Level.
    // Requests must match the rules of every field (an intersection of rules).
    type PolicyRule struct {
    	// The Level that requests matching this rule are recorded at.
    	Level Level
    
    	// The users (by authenticated user name) this rule applies to.
    	// An empty list implies every user.
    	// +optional
    	Users []string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 09:18:23 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. src/runtime/stubs.go

    // See go.dev/issue/67401.
    //
    //go:linkname procyield
    func procyield(cycles uint32)
    
    type neverCallThisFunction struct{}
    
    // goexit is the return stub at the top of every goroutine call stack.
    // Each goroutine stack is constructed as if goexit called the
    // goroutine's entry point function, so that when the entry point
    // function returns, it will return to goexit, which will call goexit1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  8. src/os/timeout_test.go

    				d = next
    			}
    			continue
    		}
    
    		break
    	}
    }
    
    // There is a very similar copy of this in net/timeout_test.go.
    func TestVariousDeadlines(t *testing.T) {
    	t.Parallel()
    	testVariousDeadlines(t)
    }
    
    // There is a very similar copy of this in net/timeout_test.go.
    func TestVariousDeadlines1Proc(t *testing.T) {
    	// Cannot use t.Parallel - modifies global GOMAXPROCS.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher.go

    		close(c.done)
    	}
    }
    
    func (c *cacheWatcher) nonblockingAdd(event *watchCacheEvent) bool {
    	// if the bookmarkAfterResourceVersion hasn't been seen
    	// we will try to deliver a bookmark event every second.
    	// the following check will discard a bookmark event
    	// if it is < than the bookmarkAfterResourceVersion
    	// so that we don't pollute the input channel
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 12:22:41 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  10. src/net/http/client.go

    	CheckRedirect func(req *Request, via []*Request) error
    
    	// Jar specifies the cookie jar.
    	//
    	// The Jar is used to insert relevant cookies into every
    	// outbound Request and is updated with the cookie values
    	// of every inbound Response. The Jar is consulted for every
    	// redirect that the Client follows.
    	//
    	// If Jar is nil, cookies are only sent if they are explicitly
    	// set on the Request.
    	Jar CookieJar
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
Back to top