Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 400 for bundles (0.18 sec)

  1. tensorflow/compiler/mlir/lite/python/saved_model_to_tfl_flatbuffer.cc

      auto bundle = std::make_unique<tensorflow::SavedModelBundle>();
      TF_ASSIGN_OR_RETURN(
          auto module,
          ImportSavedModel(
              model_flags.saved_model_dir(), model_flags.saved_model_version(),
              tags, absl::MakeSpan(custom_opdefs), exported_names, specs,
              !toco_flags.enable_tflite_resource_variables(), &context, &bundle));
    
      if (!model_flags.input_arrays().empty() ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    Custom Gradle distributions are a practical solution to this very problem.
    A custom Gradle distribution is comprised of the standard Gradle distribution plus one or many custom initialization scripts.
    The initialization scripts come bundled with the distribution and are applied every time the build is run.
    Developers only need to point their checked-in <<gradle_wrapper.adoc#gradle_wrapper_reference,Wrapper>> files to the URL of the custom Gradle distribution.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DefaultDependencyConstraintHandler.java

                if (provider.getType() != null && ExternalModuleDependencyBundle.class.isAssignableFrom(provider.getType())) {
                    ExternalModuleDependencyBundle bundle = Cast.uncheckedCast(provider.get());
                    for (MinimalExternalModuleDependency dependency : bundle) {
                        doAdd(configuration, dependency, configureAction);
                    }
                    return DUMMY_CONSTRAINT;
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 00:10:09 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.cc

          /*mlir_dump_file_prefix=*/kDefaultTfQuantMlirDumpFilePrefix,
          /*is_inliner_run=*/is_inliner_run,
          /*noinline_functions=*/aliased_function_names, module_ref.get(), context,
          bundle ? bundle->GetSession() : nullptr, run_tf_to_stablehlo,
          deserialize_xla_call_module));
      return module_ref;
    }
    
    absl::StatusOr<ExportedModel> ModuleOpToExportedModel(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/PropertyAccessorTypeTest.groovy

            bean.idore == true
        }
    
        def "is methods with Boolean return type are considered as such by Gradle and Groovy but not Java"() {
            assumeTrue('This test requires bundled Groovy 3', VersionNumber.parse(GroovySystem.version).major == 3)
            def bean = new DeviantBean()
            def propertyNames = Introspector.getBeanInfo(DeviantBean).propertyDescriptors.collect { it.name }
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  6. pkg/kubeapiserver/authenticator/config.go

    	BootstrapTokenAuthenticator authenticator.Token
    	// ClientCAContentProvider are the options for verifying incoming connections using mTLS and directly assigning to users.
    	// Generally this is the CA bundle file used to authenticate client certificates
    	// If this value is nil, then mutual TLS is disabled.
    	ClientCAContentProvider dynamiccertificates.CAContentProvider
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. src/syscall/exec_windows.go

    	NoInheritHandles           bool                // if set, no handles are inherited by the new process, not even the standard handles, contained in ProcAttr.Files, nor the ones contained in AdditionalInheritedHandles
    	AdditionalInheritedHandles []Handle            // a list of additional handles, already marked as inheritable, that will be inherited by the new process
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 18:29:48 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ConcurrentToolingApiIntegrationSpec.groovy

            settingsFile.touch()
        }
    
        def "handles the same target gradle version concurrently"() {
            buildFile << "apply plugin: 'java'"
    
            when:
            threads.times {
                concurrent.start { useToolingApi(toolingApi) }
            }
    
            then:
            concurrent.finished()
        }
    
        def "handles different target gradle versions concurrently"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  9. pkg/apis/resource/validation/validation_resourceclaim_test.go

    			ResourceHandles: func() []resource.ResourceHandle {
    				var handles []resource.ResourceHandle
    				for i := 0; i < resource.AllocationResultResourceHandlesMaxSize; i++ {
    					handle := resource.ResourceHandle{
    						DriverName: "valid",
    						Data:       strings.Repeat(" ", resource.ResourceHandleDataMaxSize),
    					}
    					handles = append(handles, handle)
    				}
    				return handles
    			}(),
    			Shareable: true,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/SnapshotTaskInputsOperationIntegrationTest.groovy

            when:
            buildFile << customTaskCode('foo', 'bar')
            succeeds('customTask')
    
            then:
            operations.hasOperation(SnapshotTaskInputsBuildOperationType)
        }
    
        def "handles task with no outputs"() {
            when:
            buildScript """
                task noOutputs {
                    doLast {}
                }
            """
            succeeds('noOutputs', "--build-cache")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top