Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 67 for classy (0.11 sec)

  1. doc/go1.17_spec.html

    <h3 id="For_statements">For statements</h3>
    
    <p>
    A "for" statement specifies repeated execution of a block. There are three forms:
    The iteration may be controlled by a single condition, a "for" clause, or a "range" clause.
    </p>
    
    <pre class="ebnf">
    ForStmt = "for" [ Condition | ForClause | RangeClause ] Block .
    Condition = Expression .
    </pre>
    
    <h4 id="For_condition">For statements with single condition</h4>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Maps.java

        // Ideally, the extra type parameter "C" shouldn't be necessary. It is a
        // work-around of a compiler type inference quirk that prevents the
        // following code from being compiled:
        // Comparator<Class<?>> comparator = null;
        // Map<Class<? extends Throwable>, String> map = newTreeMap(comparator);
        return new TreeMap<>(comparator);
      }
    
      /**
       * Creates an {@code EnumMap} instance.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Maps.java

        // Ideally, the extra type parameter "C" shouldn't be necessary. It is a
        // work-around of a compiler type inference quirk that prevents the
        // following code from being compiled:
        // Comparator<Class<?>> comparator = null;
        // Map<Class<? extends Throwable>, String> map = newTreeMap(comparator);
        return new TreeMap<>(comparator);
      }
    
      /**
       * Creates an {@code EnumMap} instance.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

    const char* kPaddingSame = "SAME";
    const char* kPaddingValid = "VALID";
    
    #define GEN_PASS_DEF_UNIFORMQUANTIZEDSTABLEHLOTOTFLPASS
    #include "tensorflow/compiler/mlir/lite/stablehlo/transforms/passes.h.inc"
    
    class UniformQuantizedStableHloToTflPass
        : public impl::UniformQuantizedStableHloToTflPassBase<
              UniformQuantizedStableHloToTflPass> {
     private:
      void runOnOperation() override;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

    @ElementTypesAreNonnullByDefault
    // TODO(dpb): GWT compatibility.
    public final class ClosingFuture<V extends @Nullable Object> {
    
      private static final LazyLogger logger = new LazyLogger(ClosingFuture.class);
    
      /**
       * An object that can capture objects to be closed later, when a {@link ClosingFuture} pipeline is
       * done.
       */
      public static final class DeferredCloser {
        @RetainedWith private final CloseableList list;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  6. fastapi/routing.py

                Type[APIRoute],
                Doc(
                    """
                    Custom route (*path operation*) class to be used by this router.
    
                    Read more about it in the
                    [FastAPI docs for Custom Request and APIRoute class](https://fastapi.tiangolo.com/how-to/custom-request-and-route/#custom-apiroute-class-in-a-router).
                    """
                ),
            ] = APIRoute,
            on_startup: Annotated[
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  7. samples/bookinfo/src/reviews/reviews-application/src/main/webapp/index.html

      limitations under the License.
    -->
    <div>
    	<h2>REST</h2>
    	<p>
    		Inside the application project there is a application.rest package
    		containing the
    		<code>LibertyRestEndpoint</code>
    		class. This adds a REST endpoint which you can access at <a
    			href="rest">/rest</a>
    	<p>
    		Inside the wlpcfg project there is the
    		<code>it.rest.LibertyRestEndpointTest</code>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 17:00:23 UTC 2017
    - 196.5K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/CallTest.kt

        listener.removeUpToEvent(CallEnd::class.java)
    
        // The ResponseFailed event is not necessarily fatal!
        listener.removeUpToEvent(ConnectionAcquired::class.java)
        listener.removeUpToEvent(ResponseFailed::class.java)
        listener.removeUpToEvent(ConnectionReleased::class.java)
        listener.removeUpToEvent(ConnectionAcquired::class.java)
        listener.removeUpToEvent(ConnectionReleased::class.java)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm64/asm7.go

    			}
    		}
    		p.From.Class = int8(a1)
    	}
    
    	a2 := C_NONE
    	if p.Reg != 0 {
    		a2 = rclass(p.Reg)
    	}
    
    	a3 := C_NONE
    	if p.GetFrom3() != nil {
    		a3 = int(p.GetFrom3().Class)
    		if a3 == 0 {
    			a3 = c.aclass(p.GetFrom3())
    			p.GetFrom3().Class = int8(a3)
    		}
    	}
    
    	a4 := int(p.To.Class)
    	if a4 == 0 {
    		a4 = c.aclass(&p.To)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	if fn(pm) {
    		pm.Class.Traverse(fn)
    		pm.Member.Traverse(fn)
    	}
    }
    
    func (pm *PtrMem) Copy(fn func(AST) AST, skip func(AST) bool) AST {
    	if skip(pm) {
    		return nil
    	}
    	class := pm.Class.Copy(fn, skip)
    	member := pm.Member.Copy(fn, skip)
    	if class == nil && member == nil {
    		return fn(pm)
    	}
    	if class == nil {
    		class = pm.Class
    	}
    	if member == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
Back to top