Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 321 for gather (0.21 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // value of type ToPrint that is an operand of a comparison assertion
    // (e.g. ASSERT_EQ).  OtherOperand is the type of the other operand in
    // the comparison, and is used to help determine the best way to
    // format the value.  In particular, when the value is a C string
    // (char pointer) and the other operand is an STL string object, we
    // want to format the C string as a string, since we know it is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    	// should be delivered to the watcher can be created before it will
    	// block the implementation and as a result force the watcher to be
    	// closed (as otherwise events would have to be dropped).
    	// For now, this number is smallest for Cacher and it equals 21 for it.
    	//
    	// Create more events to ensure that we're not blocking other watchers
    	// forever.
    	startTime := time.Now()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  3. src/go/parser/parser.go

    		// make the error message more specific
    		switch {
    		case p.tok == token.SEMICOLON && p.lit == "\n":
    			msg += ", found newline"
    		case p.tok.IsLiteral():
    			// print 123 rather than 'INT', etc.
    			msg += ", found " + p.lit
    		default:
    			msg += ", found '" + p.tok.String() + "'"
    		}
    	}
    	p.error(pos, msg)
    }
    
    func (p *parser) expect(tok token.Token) token.Pos {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  4. pkg/proxy/iptables/proxier.go

    		}
    	}
    
    	// Delete chains no longer in use. Since "iptables-save" can take several seconds
    	// to run on hosts with lots of iptables rules, we don't bother to do this on
    	// every sync in large clusters. (Stale chains will not be referenced by any
    	// active rules, so they're harmless other than taking up memory.)
    	deletedChains := 0
    	if !proxier.largeClusterMode || time.Since(proxier.lastIPTablesCleanup) > proxier.syncPeriod {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  5. src/cmd/go/go_test.go

    	tg.setenv("GOPATH", tg.path("p"))
    
    	// This should normally fail because we are passing an unknown flag,
    	// but issue #19080 points to Fortran compilers that succeed anyhow.
    	// To work either way we call doRun directly rather than run or runFail.
    	tg.doRun([]string{"build", "-x", "p"})
    
    	tg.grepStderr("no-such-fortran-flag", `missing expected "-no-such-fortran-flag"`)
    }
    
    // Issue 19198.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  6. src/net/http/request.go

    	//
    	// For client requests, these fields are ignored. The HTTP
    	// client code always uses either HTTP/1.1 or HTTP/2.
    	// See the docs on Transport for details.
    	Proto      string // "HTTP/1.0"
    	ProtoMajor int    // 1
    	ProtoMinor int    // 0
    
    	// Header contains the request header fields either received
    	// by the server or to be sent by the client.
    	//
    	// If a server received a request with header lines,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  7. docs/changelogs/changelog_3x.md

        some applications.
     *  New: Override `equals()` and `hashCode()` in our new cookie class. This
        class now defines equality by value rather than by reference.
     *  New: Handle 408 responses by retrying the request. This allows servers to
        direct clients to retry rather than failing permanently.
     *  New: Expose the framed protocol in `Connection`. Previously this would
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // meshes will interact with each other, but it is not required to be
      // globally/universally unique. For example, if any of the following are true,
      // then two meshes must have different Mesh IDs:
      // - Meshes will have their telemetry aggregated in one place
      // - Meshes will be federated together
      // - Policy will be written referencing one mesh from the other
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/reflect/TypeToken.java

                        new TypeResolver.TypeVariableKey(typeParam.typeVariable), typeArg.runtimeType));
        // If there's any type error, we'd report now rather than later.
        return new SimpleTypeToken<>(resolver.resolveType(runtimeType));
      }
    
      /**
       * Returns a new {@code TypeToken} where type variables represented by {@code typeParam} are
       * substituted by {@code typeArg}. For example, it can be used to construct {@code Map<K, V>} for
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  10. pkg/apis/autoscaling/validation/validation_test.go

        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package validation
    
    import (
    	"strings"
    	"testing"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 56.7K bytes
    - Viewed (0)
Back to top