Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 650 for necessarily (0.37 sec)

  1. src/runtime/os_linux_s390x.go

    	}
    }
    
    func osArchInit() {}
    
    func checkS390xCPU() {
    	// Check if the present z-system has the hardware capability to carryout
    	// floating point operations. Check if hwcap reflects CPU capability for the
    	// necessary floating point hardware (HasVX) availability.
    	// Starting with Go1.19, z13 is the minimum machine level for running Go on LoZ
    	if cpu.HWCap&_HWCAP_VX == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 17:36:28 UTC 2023
    - 825 bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ChangingOutputsContext.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.execution.steps;
    
    /**
     * Context necessary for steps that change the outputs.
     *
     * This context doesn't add any new information, it encodes a requirement
     * in the type system that a step can change the outputs.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1023 bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/build/BuildToolingModelController.java

    /**
     * Coordinates the building of tooling models.
     */
    public interface BuildToolingModelController {
        /**
         * Returns the mutable model, configuring if necessary.
         */
        GradleInternal getConfiguredModel();
    
        ToolingModelScope locateBuilderForTarget(String modelName, boolean param);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 14 21:39:26 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbComOpenAndX.java

                    // create it if necessary
                    openFunction = OPEN_FN_TRUNC | OPEN_FN_CREATE;
                } else {
                    openFunction = OPEN_FN_TRUNC;
                }
            } else {
                // don't truncate the file
                if(( flags & SmbFile.O_CREAT ) == SmbFile.O_CREAT ) {
                    // create it if necessary
                    if(( flags & SmbFile.O_EXCL ) == SmbFile.O_EXCL ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 5.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/CapabilityNotationParser.java

    import org.gradle.internal.typeconversion.NotationParser;
    
    /**
     * A concrete type for a generic {@link NotationParser} that parses {@link Capability}s.
     * <p>
     * This concrete type is necessary so that it can be injected into version catalog generated sources.
     */
    public interface CapabilityNotationParser extends NotationParser<Object, Capability> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/experimental/public/signature_def_function_metadata.h

    namespace cc {
    
    // SignatureDefFunctionMetadata stores additional information on each input
    // and output's names, dtypes, and shape.
    class SignatureDefFunctionMetadata final {
      // TODO(bmzhao): Add getters here as necessary.
     private:
      friend class SignatureDefFunction;
      static SignatureDefFunctionMetadata* wrap(
          TF_SignatureDefFunctionMetadata* p) {
        return reinterpret_cast<SignatureDefFunctionMetadata*>(p);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 17 23:03:48 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/saved_model/internal/function_metadata.cc

    #include "tensorflow/c/experimental/saved_model/public/function_metadata.h"
    
    #include "tensorflow/c/experimental/saved_model/internal/function_metadata_type.h"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 20 17:00:01 UTC 2020
    - 888 bytes
    - Viewed (0)
  8. src/log/syslog/doc.go

    // Package syslog provides a simple interface to the system log
    // service. It can send messages to the syslog daemon using UNIX
    // domain sockets, UDP or TCP.
    //
    // Only one call to Dial is necessary. On write failures,
    // the syslog client will attempt to reconnect to the server
    // and write again.
    //
    // The syslog package is frozen and is not accepting new features.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 935 bytes
    - Viewed (0)
  9. test/fixedbugs/issue49282.go

    		}
    	}()
    }
    
    var One float64 = 1.0
    
    func f(d uintptr) {
    	var a, m []int
    	var s struct {
    		a, b, c, d, e int
    	}
    
    	g(d, a, m, s, uint(One)) // Uint of not-a-constant inserts a conditional, necessary to bug
    
    	defer func() uint {
    		return 0
    	}()
    }
    
    var d uintptr
    
    func h() {
    	f(d)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 13:10:06 UTC 2021
    - 639 bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/core/function_metadata.h

    #define TENSORFLOW_C_EXPERIMENTAL_SAVED_MODEL_CORE_FUNCTION_METADATA_H_
    
    namespace tensorflow {
    
    class FunctionMetadata {
      // TODO(bmzhao): Fill in with fields as necessary
    };
    
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 20 17:00:01 UTC 2020
    - 1023 bytes
    - Viewed (0)
Back to top