Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 220 for getAlg (0.26 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/InspectableConfigurationFixture.groovy

            StringBuilder reply = new StringBuilder()
    
            reply.append("Configuration of type: ").append(container.getTypeDisplayName())
            Collection<? extends Configuration> configs = container.getAll()
            configs.each { Configuration c ->
                reply.append("\n  ").append(c.toString())
            }
    
            return reply.toString()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/AbstractDaemonFixture.groovy

        void killDaemonOnly() {
            new ProcessFixture(context.pid).kill(false)
        }
    
        @Override
        String toString() {
            "Daemon with context $context"
        }
    
        @Override
        String getLog() {
            return daemonLog.text
        }
    
        @Override
        File getLogFile() {
            return daemonLog.file
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 15:22:16 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/NestedBeanGroovyInterOpIntegrationTest.groovy

                import ${Property.name}
                import ${Internal.name}
    
                interface Params {
                    @Internal
                    Property<Boolean> getFlag()
                }
            """
            pluginDir.file("src/main/groovy/SomeTask.groovy") << """
                import ${DefaultTask.name}
                import ${TaskAction.name}
                import ${Nested.name}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/wasm/ssa.go

    			s.Prog(wasm.AI32WrapI64)
    		}
    		return
    	}
    
    	reg := v.Reg()
    	getReg(s, reg)
    	if reg != wasm.REG_SP {
    		s.Prog(wasm.AI32WrapI64)
    	}
    }
    
    func getValue64(s *ssagen.State, v *ssa.Value) {
    	if v.OnWasmStack {
    		s.OnWasmStackSkipped--
    		ssaGenValueOnStack(s, v, true)
    		return
    	}
    
    	reg := v.Reg()
    	getReg(s, reg)
    	if reg == wasm.REG_SP {
    		s.Prog(wasm.AI64ExtendI32U)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/NotifyDaemonAboutChangedPathsClient.java

            this.idGenerator = idGenerator;
            this.daemonRegistry = daemonRegistry;
        }
    
        public void notifyDaemonsAboutChangedPaths(List<String> changedPaths) {
            for (DaemonInfo daemonInfo : daemonRegistry.getAll()) {
                DaemonStateControl.State state = daemonInfo.getState();
                if (state == Idle || state == Busy || state == Canceled) {
                    DaemonClientConnection connection = connector.maybeConnect(daemonInfo);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/encoding/Identifier.java

        }
    
        public String getDisplayName() {
            return displayName;
        }
    
        @Override
        public String toString() {
            return displayName;
        }
    
        public static List<Identifier> getAll() {
            return Arrays.asList(getPunctuation(), getNonAscii(), getFileSystemReserved(), getXmlMarkup(), getWhiteSpace());
        }
    
        public static Identifier getPunctuation() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/integTest/resources/org/gradle/internal/logging/LoggingIntegrationTest/logging/project1/build.gradle

    org.slf4j.Logger slf4jLogger = org.slf4j.LoggerFactory.getLogger('some-logger')
    slf4jLogger.info('An info log message logged using SLF4j')
    // END SNIPPET use-slf4j
    
    org.apache.commons.logging.Log jclLogger = org.apache.commons.logging.LogFactory.getLog('some-logger')
    jclLogger.info('An info log message logged using JCL')
    
    org.apache.log4j.Logger log4jLogger = org.apache.log4j.Logger.getLogger('some-logger')
    log4jLogger.info('An info log message logged using Log4j')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/get_compiler_ir.cc

      if (!platform_name.empty()) {
        device_name = absl::StrCat("/device:", platform_name, ":0");
      }
      FunctionLibraryRuntime* flr = pflr->GetFLR(device_name);
      if (flr == nullptr) {
        // Use CPU as the fallback to get the `FunctionLibraryRuntime`.
        flr = pflr->GetFLR("/device:CPU:0");
      }
    
      TF_ASSIGN_OR_RETURN(
          std::vector<XlaCompiler::Argument> args,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonRegistryUnavailableExpirationStrategy.java

                    // Check that given daemon still exists in registry - a daemon registry could be removed and recreated between checks
                    List<Long> allDaemonPids = Lists.transform(daemon.getDaemonRegistry().getAll(), new Function<DaemonInfo, Long>() {
                        @Override
                        public Long apply(DaemonInfo info) {
                            return info.getPid();
                        }
                    });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

      // can backtracked to. Such results will be called "function passthrough". If
      // the result cannot be backtracked to a region argument, returns
      // std::nullopt.
      std::optional<int> GetArg(int result_index) const {
        if (auto arg = mlir::dyn_cast<BlockArgument>(GetValue(result_index)))
          if (arg.getParentBlock() == &region_->front()) return arg.getArgNumber();
        return std::nullopt;
      }
    
     private:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
Back to top