Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,141 for get2s (0.05 sec)

  1. cmd/kubeadm/app/util/config/cluster.go

    	if !newControlPlane {
    		// gets the nodeRegistration for the current from the node object
    		kubeconfigFile := filepath.Join(kubeconfigDir, constants.KubeletKubeConfigFileName)
    		if err := GetNodeRegistration(kubeconfigFile, client, &initcfg.NodeRegistration); err != nil {
    			return nil, errors.Wrap(err, "failed to get node registration")
    		}
    		// gets the APIEndpoint for the current node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_compile_util.h

    // `device_type` in either the XlaLaunch op or the XlaCompileOnDemand op.
    bool UsePjRtForSingleDeviceCompilation(const DeviceType& device_type);
    
    // Gets the resource name of the PjRt DeviceCompiler for `device_type`.
    std::string GetPjRtDeviceCompilerResourceName(const DeviceType& device_type);
    
    // Gets the resource name of the DeviceCompilationProfiler for `device_type`
    // when PjRt is used for compilation and execution.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. src/runtime/rt0_js_wasm.s

    	Drop
    	Call wasm_pc_f_loop(SB)
    
    	Return
    
    // wasm_export_resume gets called from JavaScript. It resumes the execution of Go code until it needs to wait for
    // an event.
    TEXT wasm_export_resume(SB),NOSPLIT,$0
    	I32Const $0
    	Call runtime·handleEvent(SB)
    	Drop
    	Call wasm_pc_f_loop(SB)
    
    	Return
    
    // wasm_export_getsp gets called from JavaScript to retrieve the SP.
    TEXT wasm_export_getsp(SB),NOSPLIT,$0
    	Get SP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 05 19:28:25 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/Repository.java

        /**
         * The reserved id for Maven Central
         */
        String CENTRAL_ID = "central";
    
        /**
         * Gets the identifier of this repository.
         *
         * @return the (case-sensitive) identifier, never {@code null}
         */
        @Nonnull
        String getId();
    
        /**
         * Gets the type of the repository, for example "default".
         *
         * @return the (case-sensitive) type of the repository, never {@code null}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 13 11:39:50 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelResolverException.java

            this.artifactId = artifactId;
            this.version = version;
        }
    
        /**
         * Gets the group id of the unresolvable model.
         *
         * @return The group id of the unresolvable model, can be empty but never {@code null}.
         */
        public String getGroupId() {
            return groupId;
        }
    
        /**
         * Gets the artifact id of the unresolvable model.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ModelBuildingEvent.java

     *
     */
    public interface ModelBuildingEvent {
    
        /**
         * Gets the model being built. The precise state of this model depends on the event being fired.
         *
         * @return The model being built, never {@code null}.
         */
        Model model();
    
        Consumer<Model> update();
    
        /**
         * Gets the model building request being processed.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderException.java

            this.result = result;
        }
    
        /**
         * Gets the interim result of the model building up to the point where it failed.
         *
         * @return The interim model building result or {@code null} if not available.
         */
        public ModelBuilderResult getResult() {
            return result;
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/plugins/jvm/internal/JvmFeatureInternal.java

         */
        void withApi();
    
        /**
         * Gets the consumable configuration created by {@link #withJavadocJar()}.
         *
         * @return null if {@link #withJavadocJar()} has not been called.
         */
        @Nullable
        Configuration getJavadocElementsConfiguration();
    
        /**
         * Gets the consumable configuration created by {@link #withSourcesJar()}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/project/ProjectBuildingRequest.java

         * @return This request, never {@code null}.
         */
        ProjectBuildingRequest setSystemProperties(Properties systemProperties);
    
        /**
         * Gets the system properties to use for interpolation and profile activation. The system properties are collected
         * from the runtime environment like {@link System#getProperties()} and environment variables.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

            message_(a_message) {
      }
    
      // Gets the outcome of the test part.
      Type type() const { return type_; }
    
      // Gets the name of the source file where the test part took place, or
      // NULL if it's unknown.
      const char* file_name() const {
        return file_name_.empty() ? NULL : file_name_.c_str();
      }
    
      // Gets the line in the source file where the test part took place,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top