Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 424 for loadOps (0.13 sec)

  1. subprojects/core/src/main/java/org/gradle/initialization/IGradlePropertiesLoader.java

    public interface IGradlePropertiesLoader {
    
        String SYSTEM_PROJECT_PROPERTIES_PREFIX = "org.gradle.project.";
    
        String ENV_PROJECT_PROPERTIES_PREFIX = "ORG_GRADLE_PROJECT_";
    
        /**
         * Loads the set of Gradle properties.
         *
         * @since 6.2
         */
        MutableGradleProperties loadGradleProperties(File rootDir);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 06 16:05:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/SystemClassLoaderTest.groovy

    import org.gradle.test.preconditions.IntegTestPreconditions
    
    /**
     * Verifies that Gradle doesn't pollute the system class loader.
     *
     * This is important for plugins that need to use isolated class loaders to avoid conflicts.
     *
     * When running without the daemon, success is dependant on the start scripts doing the right thing.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. test/codegen/issue33580.go

    // asmcheck
    
    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Make sure we reuse large constant loads, if we can.
    // See issue 33580.
    
    package codegen
    
    const (
    	A = 7777777777777777
    	B = 8888888888888888
    )
    
    func f(x, y uint64) uint64 {
    	p := x & A
    	q := y & A
    	r := x & B
    	// amd64:-"MOVQ.*8888888888888888"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 07 15:16:26 UTC 2019
    - 459 bytes
    - Viewed (0)
  4. test/atomicload.go

    // run
    
    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Check that we do loads exactly once. The SSA backend
    // once tried to do the load in f twice, once sign extended
    // and once zero extended.  This can cause problems in
    // racy code, particularly sync/mutex.
    
    package main
    
    func f(p *byte) bool {
    	x := *p
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 04:20:02 UTC 2016
    - 798 bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/config/joinconfiguration.go

    		err    error
    	)
    	if cfgPath != "" {
    		// Loads configuration from config file, if provided
    		config, err = LoadJoinConfigurationFromFile(cfgPath, opts)
    	} else {
    		config, err = DefaultedJoinConfiguration(defaultversionedcfg, opts)
    	}
    	if err == nil {
    		prepareStaticVariables(config)
    	}
    	return config, err
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 12:41:16 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/saved_model/public/README.md

    # TensorFlow Saved Model C API
    
    ## Small ConcreteFunction Example
    
    The following example loads a saved model from `"/path/to/model"` and
    executes a function `f` taking no arguments and returning one single
    value (error checking is omitted for simplicity):
    
    ```c
    TF_Status* status = TF_NewStatus();
    TFE_ContextOptions* ctx_options = TFE_NewContextOptions();
    TFE_Context* ctx = TFE_NewContext(ctx_options, status);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 16 23:02:56 UTC 2020
    - 904 bytes
    - Viewed (0)
  7. guava/src/com/google/common/reflect/ClassPath.java

        this.resources = resources;
      }
    
      /**
       * Returns a {@code ClassPath} representing all classes and resources loadable from {@code
       * classloader} and its ancestor class loaders.
       *
       * <p><b>Warning:</b> {@code ClassPath} can find classes and resources only from:
       *
       * <ul>
       *   <li>{@link URLClassLoader} instances' {@code file:} URLs
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 05 17:43:40 UTC 2022
    - 24.9K bytes
    - Viewed (0)
  8. src/runtime/tls_ppc64x.s

    #ifndef GOOS_aix
    #ifndef GOOS_openbsd
    	MOVBZ	runtime·iscgo(SB), R31
    	CMP	R31, $0
    	BEQ	nocgo
    #endif
    #endif
    	MOVD	runtime·tls_g(SB), R31
    	MOVD	g, 0(R31)
    
    nocgo:
    	RET
    
    // load_g loads the g register from pthread-provided
    // thread-local memory, for use after calling externally compiled
    // ppc64 code that overwrote those registers.
    //
    // This is never called directly from C code (it doesn't have to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:48:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/doc/c4/C4_2_Container.puml

    Rel(dev, gradle, "Uses", "Command Line")
    Rel(dev, editor, "Uses", "GUI")
    
    Rel(provider, kotlinc, "Uses", "Embedded")
    Rel(plugin, kgp, "Applies")
    
    Rel(ideKotlin, kotlinc, "Uses")
    Rel(ideKotlin, resolver, "Loads", "Embedded")
    
    Rel(provider, buildCache, "Uses")
    Rel(kgp, buildCache, "Uses")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. test/inline_endian.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Similar to inline.go, but only for architectures that can merge loads.
    
    package foo
    
    import (
    	"encoding/binary"
    )
    
    // Ensure that simple encoding/binary functions are cheap enough
    // that functions using them can also be inlined (issue 42958).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 15 21:05:02 UTC 2022
    - 1.6K bytes
    - Viewed (0)
Back to top