Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for getFactor (0.2 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_operator.h

    template <typename T>
    inline std::vector<T> GetVector(DenseElementsAttr elements);
    
    // TODO(zichuanwei@): for each type, we need to make sure the element type
    // matches the expected type otherwise an error should be thrown, but for now
    // we're just returning empty vector
    template <>
    inline std::vector<bool> GetVector(DenseElementsAttr elements) {
      auto type = elements.getType();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 21:00:09 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ModelRuleExtractor.java

                            final MethodRuleDefinition<?, ?> methodRuleDefinition = details.method;
                            final Factory<? extends T> factory = getFactory();
                            return new ContextualizedModelAction<T>(methodRuleDefinition, mappedSubject, inputs, action, factory);
                        }
                    }, target);
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 26K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/typeregistration/BaseInstanceFactory.java

                return source;
            }
    
            public ModelType<?> getImplementationType() {
                return implementationType;
            }
    
            public ImplementationFactory<? super PUBLIC, ?> getFactory() {
                return factory;
            }
        }
    
        private static class InternalViewRegistration<T> {
            private final ModelRuleDescriptor source;
            private final ModelType<T> internalView;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/ProviderConnection.java

            if (standardInput == null) {
                standardInput = SafeStreams.emptyInput();
            }
            if (Boolean.TRUE.equals(operationParameters.isEmbedded())) {
                loggingManager = sharedServices.getFactory(LoggingManagerInternal.class).create();
                loggingManager.captureSystemSources();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

        public static final TestFile COMMON_TMP = new TestFile(new File("build/tmp"));
    
        static {
            LoggingManagerInternal loggingManager = GLOBAL_SERVICES.getFactory(LoggingManagerInternal.class).create();
            loggingManager.start();
    
            GLOBAL_SERVICES.get(AgentInitializer.class).maybeConfigureInstrumentationAgent();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApi.groovy

            }
    
            return new ToolingApiConnector(connector, stdout, stderr)
        }
    
        private createConnector() {
            if (isolatedToolingClient != null) {
                return isolatedToolingClient.getFactory(DefaultGradleConnector).create()
            }
            return GradleConnector.newConnector() as DefaultGradleConnector
        }
    
        private void isolateFromGradleOwnBuild(DefaultGradleConnector connector) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:07:23 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/DefaultCommandLineActionFactory.java

                } catch (CommandLineArgumentException e) {
                    // Ignore, deal with this problem later
                }
    
                LoggingManagerInternal loggingManager = loggingServices.getFactory(LoggingManagerInternal.class).create();
                loggingManager.setLevelInternal(loggingConfiguration.getLogLevel());
                loggingManager.start();
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/service/scopes/BuildScopeServices.java

        }
    
        private DefaultScriptPluginFactory defaultScriptPluginFactory() {
            return new DefaultScriptPluginFactory(
                this,
                get(ScriptCompilerFactory.class),
                getFactory(LoggingManagerInternal.class),
                get(AutoAppliedPluginHandler.class),
                get(PluginRequestApplicator.class),
                get(CompileOperationFactory.class));
        }
    
        @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 35.8K bytes
    - Viewed (0)
Back to top