Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 329 for Grappler (0.69 sec)

  1. android/guava-testlib/test/com/google/common/testing/anotherpackage/ForwardingWrapperTesterTest.java

        new ForwardingWrapperTester().testForwarding(Equals.class, NoDelegateToEquals.WRAPPER);
      }
    
      public void testExplicitEqualsAndHashCodeDelegatedWhenExplicitlyAsked() {
        try {
          new ForwardingWrapperTester()
              .includingEquals()
              .testForwarding(Equals.class, NoDelegateToEquals.WRAPPER);
        } catch (AssertionFailedError expected) {
          return;
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Tables.java

        }
    
        @Override
        public Map<C, Map<R, V>> columnMap() {
          Function<Map<R, V>, Map<R, V>> wrapper = unmodifiableWrapper();
          return Collections.unmodifiableMap(Maps.transformValues(super.columnMap(), wrapper));
        }
    
        @Override
        @CheckForNull
        public V put(
            @ParametricNullness R rowKey,
            @ParametricNullness C columnKey,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

            if (processed_ops.contains(op)) continue;
    
            IslandOp wrapper = op->getParentOfType<IslandOp>();
            assert(wrapper);
            wrapper.getControlInputsMutable().append(chain_src_island.getControl());
            if (ops_connected_to_fetch.contains(wrapper)) {
              chain_sink_island.getControlInputsMutable().append(
                  wrapper.getControl());
            }
            processed_ops.insert(op);
          }
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    When the task runs, it creates or updates the criteria in the `gradle/gradle-daemon-jvm.properties` file.
    For more control, the task can be further configured in the build script or via command-line arguments.
    
    As with the wrapper, the generated file should be checked into version control.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/typecheck/stmt.go

    			init.Append(Stmt(ir.NewUnaryExpr(stmtPos, ir.OCHECKNIL, ir.NewUnaryExpr(iface.Pos(), ir.OITAB, iface))))
    		}
    	}
    
    	// Move call into the wrapper function, now that it's safe to
    	// evaluate there.
    	wrapperFn.Body = []ir.Node{call}
    
    	// Finally, construct a call to the wrapper.
    	return Call(call.Pos(), wrapperFn.OClosure, nil, false).(*ir.CallExpr)
    }
    
    // tcIf typechecks an OIF node.
    func tcIf(n *ir.IfStmt) ir.Node {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  6. guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java

        assertThrows(
            ParameterNotInstantiableException.class,
            () -> new ClassSanityTester().doTestEquals(SetWrapper.class));
      }
    
      private abstract static class Wrapper {
        private final Object wrapped;
    
        Wrapper(Object wrapped) {
          this.wrapped = checkNotNull(wrapped);
        }
    
        @Override
        public boolean equals(@Nullable Object obj) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/admin/maintenance/admin_maintenance.jsp

    </head>
    <body class="hold-transition sidebar-mini">
    <div class="wrapper">
        <jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
        <jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
            <jsp:param name="menuCategoryType" value="log"/>
            <jsp:param name="menuType" value="maintenance"/>
        </jsp:include>
        <div class="content-wrapper">
            <div class="content-header">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 16 12:54:35 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    vet's printf checker infers whether a function has the "printf wrapper"
    type, and it applies stricter checks to calls of such functions. In
    addition, it records which functions are printf wrappers for use by
    later analysis passes to identify other printf wrappers by induction.
    A result such as “f is a printf wrapper” that is not interesting by
    itself but serves as a stepping stone to an interesting result (such as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. src/runtime/race_arm64.s

    	MRS_TPIDR_R0 \
    	TP_ALIGN \
    	MOVD    runtime·tls_g(SB), R11 \
    	MOVD    (R0)(R11), g
    
    // func runtime·raceread(addr uintptr)
    // Called from instrumented code.
    // Defined as ABIInternal so as to avoid introducing a wrapper,
    // which would make caller's PC ineffective.
    TEXT	runtime·raceread<ABIInternal>(SB), NOSPLIT, $0-8
    	MOVD	R0, R1	// addr
    	MOVD	LR, R2
    	// void __tsan_read(ThreadState *thr, void *addr, void *pc);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Tables.java

        }
    
        @Override
        public Map<C, Map<R, V>> columnMap() {
          Function<Map<R, V>, Map<R, V>> wrapper = unmodifiableWrapper();
          return Collections.unmodifiableMap(Maps.transformValues(super.columnMap(), wrapper));
        }
    
        @Override
        @CheckForNull
        public V put(
            @ParametricNullness R rowKey,
            @ParametricNullness C columnKey,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 22:45:41 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top