Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 56 for Hour (0.1 sec)

  1. src/net/http/server.go

    		return
    	}
    	var h Handler
    	if use121 {
    		h, _ = mux.mux121.findHandler(r)
    	} else {
    		h, r.Pattern, r.pat, r.matches = mux.findHandler(r)
    	}
    	h.ServeHTTP(w, r)
    }
    
    // The four functions below all call ServeMux.register so that callerLocation
    // always refers to user code.
    
    // Handle registers the handler for the given pattern.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. api/maven-api-model/src/main/mdo/maven.mdo

                CDATA to enable the use of HTML tags within the description, it is discouraged to allow
                plain text representation. If you need to modify the index page of the generated website,
                you are able to specify your own instead of adjusting this text.</description>
              <type>String</type>
            </field>
            <field>
              <name>url</name>
              <version>3.0.0+</version>
              <description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  3. cmd/server_test.go

    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    int(3.14)    // 3.14 cannot be represented as an int
    int64(Huge)  // 1267650600228229401496703205376 cannot be represented as an int64
    Four * 300   // operand 300 cannot be represented as an int8 (type of Four)
    Four * 100   // product 400 cannot be represented as an int8 (type of Four)
    </pre>
    
    <p>
    The mask used by the unary bitwise complement operator <code>^</code> matches
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  5. src/reflect/value.go

    func callReflect(ctxt *makeFuncImpl, frame unsafe.Pointer, retValid *bool, regs *abi.RegArgs) {
    	if callGC {
    		// Call GC upon entry during testing.
    		// Getting our stack scanned here is the biggest hazard, because
    		// our caller (makeFuncStub) could have failed to place the last
    		// pointer to a value in regs' pointer space, in which case it
    		// won't be visible to the GC.
    		runtime.GC()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          "This likely means that you have @tf.function "
          "on an exported function instead of "
          "@tf.function(input_signature=[...]). Consider annotating an "
          "input_signature or narrowing your set of "
          "exported names to not include this function.");
    }
    
    void StructuredValueLinearizer::RecursivelyFindLeaves(
        const StructuredValue& value) {
      switch (value.kind_case()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      auto element_type = getElementTypeOrSelf(op.getOutput().getType());
    
      // Allows F32, QI8, QUI8 and I32 outputs when the operands have valid shapes,
      // which are broadcastable shapes up to four dimensions or have same shapes.
      if (element_type.isF32() || IsQI8Type(element_type) ||
          IsQUI8Type(element_type) || IsI16Type(element_type) ||
          IsI32Type(element_type) || IsI64Type(element_type)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  8. tests/integration/pilot/common/routing.go

    		templateVars: func(src echo.Callers, dests echo.Instances) map[string]any {
    			// Test all cipher suites, including a fake one. Envoy should accept all of the ones on the "valid" list,
    			// and control plane should filter our invalid one.
    
    			params := templateParams(protocol.HTTPS, src, dests, append(sets.SortedList(security.ValidCipherSuites), "fake"), ports.HTTP.Name)
    			params["GatewayIstioLabel"] = t.Istio.Settings().IngressGatewayIstioLabel
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods.go

    func (kl *Kubelet) HandlePodCleanups(ctx context.Context) error {
    	// The kubelet lacks checkpointing, so we need to introspect the set of pods
    	// in the cgroup tree prior to inspecting the set of pods in our pod manager.
    	// this ensures our view of the cgroup tree does not mistakenly observe pods
    	// that are added after the fact...
    	var (
    		cgroupPods map[types.UID]cm.CgroupName
    		err        error
    	)
    	if kl.cgroupsPerQOS {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  10. src/database/sql/sql.go

    	return ci.nullable, ci.hasNullable
    }
    
    // DatabaseTypeName returns the database system name of the column type. If an empty
    // string is returned, then the driver type name is not supported.
    // Consult your driver documentation for a list of driver data types. [ColumnType.Length] specifiers
    // are not included.
    // Common type names include "VARCHAR", "TEXT", "NVARCHAR", "DECIMAL", "BOOL",
    // "INT", and "BIGINT".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
Back to top