Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,338 for swapped (0.13 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

          }
          rewriter.replaceOp(op, current);
          return success();
        }
    
        // The Fisher-Yates algorithm.
    
        // Generate range(n) as the initial value for the indices to be swapped.
        auto indices_type = tensorflow::GetTypeFromTFTensorShape(
            {first_dim_size}, rewriter.getIntegerType(32));
        Value indices = rewriter.create<mhlo::IotaOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/api_test.go

    		    if n > 0 {
    		        return makeT(n-1)
    		    }
    		    return T{}
    		}`, []string{
    			"t = makeT(0)", "v = t.m()",
    		}},
    		// test case for go.dev/issue/10709: same as test before, but variable decls swapped
    		{`package p14
    
    		var (
    		    t = makeT(0)
    		    v = t.m()
    		)
    
    		type T struct{}
    
    		func (T) m() int { return 0 }
    
    		func makeT(n int) T {
    		    if n > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/results/StateTrackingTestResultProcessor.java

                    incompleteChildren.add(entry.getKey());
                }
            }
    
            if (!incompleteChildren.isEmpty()) {
                TestCompleteEvent skippedEvent = new TestCompleteEvent(endTime, TestResult.ResultType.SKIPPED);
                for (Object childTestId : incompleteChildren) {
                    completed(childTestId, skippedEvent);
                }
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

                    } finally {
                        if (systemHelper.isForceStop()) {
                            finishCrawling = true;
                            if (logger.isDebugEnabled()) {
                                logger.debug("Stopped indexUpdater.");
                            }
                        }
                    }
    
                    if (emptyListCount >= maxEmptyListCount) {
                        if (logger.isInfoEnabled()) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/exec/SuggestCreator.java

            } catch (final ContainerNotAvailableException e) {
                if (logger.isDebugEnabled()) {
                    logger.debug("SuggestCreator is stopped.", e);
                } else if (logger.isInfoEnabled()) {
                    logger.info("SuggestCreator is stopped.");
                }
                exitCode = Constants.EXIT_FAIL;
            } catch (final Throwable t) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. src/syscall/syscall_solaris.go

    }
    
    func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&mask != 0 }
    
    func (w WaitStatus) Signal() Signal {
    	sig := Signal(w & mask)
    	if sig == stopped || sig == 0 {
    		return -1
    	}
    	return sig
    }
    
    func (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core != 0 }
    
    func (w WaitStatus) Stopped() bool { return w&mask == stopped && Signal(w>>shift) != SIGSTOP }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_variable_runtime_reformatting.cc

      void runOnOperation() final;
    };
    
    // Returns the earlier value of which `v` is an identity. If `skipped` is
    // provided, it will be used to store the identity nodes skipped.
    Value SkipIdentity(Value v, bool allow_other_use,
                       llvm::SmallPtrSet<Operation*, 4>* skipped = nullptr) {
      while (auto result = mlir::dyn_cast<OpResult>(v)) {
        if (!(allow_other_use || v.hasOneUse())) break;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/ExecutionEngine.java

             *
             * If the cache already contains the outputs for the given work, an already finished {@link Deferrable} will be returned.
             * Otherwise, the execution is wrapped in a not-yet-complete {@link Deferrable} to be evaluated later.
             * The work is looked up by its {@link UnitOfWork.Identity identity} in the given cache.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:17 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceErrorHandlingIntegrationTest.groovy

                }
            }
            settingsFile << withHttpBuildCacheServer()
    
            // We see connection refused because the first partial request is retried,
            // then the subsequent is flat refused because we stopped the server.
            String errorPattern = /(Connect to 127\.0\.0\.1:\d+ \[\/127\.0\.0\.1\] failed: Connection refused|127\.0\.0\.1:\d+ failed to respond|Connection reset)/
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/io/ByteStreams.java

        long skipped = skipUpTo(in, n);
        if (skipped < n) {
          throw new EOFException(
              "reached end of stream after skipping " + skipped + " bytes; " + n + " bytes expected");
        }
      }
    
      /**
       * Discards up to {@code n} bytes of data from the input stream. This method will block until
       * either the full amount has been skipped or until the end of the stream is reached, whichever
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 17 18:59:58 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top