Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 119 for getVars (0.16 sec)

  1. android/guava/src/com/google/common/escape/CharEscaper.java

            dest = growBuffer(dest, destIndex, destSize);
          }
    
          // If we have skipped any characters, we need to copy them now.
          if (charsSkipped > 0) {
            s.getChars(lastEscape, index, dest, destIndex);
            destIndex += charsSkipped;
          }
    
          // Copy the replacement string into the dest buffer as needed.
          if (rlen > 0) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/model/LaunchableGradleTask.java

            return description;
        }
    
        public LaunchableGradleTask setDescription(String description) {
            this.description = description;
            return this;
        }
    
        @Override
        public List<String> getArgs() {
            return Collections.singletonList(path);
        }
    
        @Override
        public String getProjectPath() {
            return null;
        }
    
        public String getGroup() {
            return group;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 02 15:51:49 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/passes/xla_call_module_to_call.cc

            symbol_table.lookup(GetEntryFunctionName(op)));
        if (!entry_func_op) return failure();
    
        // Replace the XlaCallModuleOp with a new CallOp.
        rewriter.replaceOpWithNewOp<func::CallOp>(op, entry_func_op, op.getArgs());
        return success();
      }
    };
    
    void XlaCallModuleToCallPass::runOnOperation() {
      ModuleOp module_op = getOperation();
      MLIRContext* ctx = module_op.getContext();
      RewritePatternSet patterns(&getContext());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 20:02:00 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/sourceset/SourceSetLinkDependenciesIntegrationTest.groovy

                }
    """
            file("src/other/cpp/func2.cpp") << """
                int getTwo();
    
                int func2() {
                    return getTwo();
                }
    """
            file("src/lib1/cpp/getters.cpp") << """
                int getOne() {
                    return 1;
                }
                int getTwo() {
                    return 2;
                }
    """
    
            and:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. testing/architecture-test/src/test/java/org/gradle/architecture/test/ServiceScopeAnnotationValidationTest.java

            }
        };
    
        private static final DescribedPredicate<JavaClass> injected_by_getter = new DescribedPredicate<JavaClass>("injected into getters via @Inject") {
            @Override
            public boolean test(JavaClass javaClass) {
                return javaClass
                    .getMethodsWithReturnTypeOfSelf()
                    .stream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/results/DefaultVisitedGraphResultsTest.groovy

            visitFailures(results1) == []
            visitFailures(results2) == [throwable]
            visitFailures(results3) == [resolveEx]
            visitFailures(results4) == [throwable, resolveEx]
        }
    
        def "getters return the values passed to the constructor"() {
            given:
            def resolveEx = Mock(ResolveException)
            def unresolved = Mock(UnresolvedDependency)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/SwiftLinker.java

                }
                if (!spec.getLibraryPath().isEmpty()) {
                    throw new UnsupportedOperationException("Library Path not yet supported on Swiftc");
                }
    
                for (String userArg : spec.getArgs()) {
                    args.add(userArg);
                }
    
                return args;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. platforms/core-runtime/process-services/src/main/java/org/gradle/process/ExecSpec.java

         * @return this
         */
        ExecSpec setArgs(Iterable<?> args);
    
        /**
         * Returns the arguments for the command to be executed. Defaults to an empty list.
         */
        List<String> getArgs();
    
        /**
         * Argument providers for the application.
         *
         * @since 4.6
         */
        List<CommandLineArgumentProvider> getArgumentProviders();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/DefaultCommandLineToolInvocationWorker.java

            if (invocation.getWorkDirectory() != null) {
                GFileUtils.mkdirs(invocation.getWorkDirectory());
                toolExec.workingDir(invocation.getWorkDirectory());
            }
    
            toolExec.args(invocation.getArgs());
    
            if (!invocation.getPath().isEmpty()) {
                String pathVar = OperatingSystem.current().getPathVar();
                String toolPath = Joiner.on(File.pathSeparator).join(invocation.getPath());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/passes/prepare_quantize.cc

                                    PatternRewriter& rewriter) const override {
        auto preceding_qcast =
            q_op.getArg().getDefiningOp<quantfork::QuantizeCastOp>();
        if (!preceding_qcast) return failure();
    
        auto new_qcast = rewriter.create<quantfork::QuantizeCastOp>(
            q_op.getLoc(), q_op.getType(), preceding_qcast.getArg());
        new_qcast->setAttr(kVolatileOpAttrName, rewriter.getUnitAttr());
        q_op->replaceAllUsesWith(new_qcast);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 03 05:11:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top