Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 687 for isInitialized (0.17 sec)

  1. platforms/core-runtime/functional/src/main/java/org/gradle/internal/lazy/Lazy.java

     *     <li>{@link #locking()} would create a lazy wrapper which performs locking when calling the supplier: the supplier will only be called once. Reading is done without locking once initialized.</li>
     * </ul>
     *
     * @param <T> the type of the lazy value
     */
    public interface Lazy<T> extends Supplier<T> {
        /**
         * Executes an operation on the lazily computed value
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. pkg/apis/autoscaling/v2beta2/defaults.go

    		obj.Spec.Behavior.ScaleUp = GenerateHPAScaleUpRules(obj.Spec.Behavior.ScaleUp)
    		obj.Spec.Behavior.ScaleDown = GenerateHPAScaleDownRules(obj.Spec.Behavior.ScaleDown)
    	}
    }
    
    // GenerateHPAScaleUpRules returns a fully-initialized HPAScalingRules value
    // We guarantee that no pointer in the structure will have the 'nil' value
    func GenerateHPAScaleUpRules(scalingRules *autoscalingv2beta2.HPAScalingRules) *autoscalingv2beta2.HPAScalingRules {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 15 06:03:59 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  3. src/runtime/os_darwin.go

    	"internal/abi"
    	"unsafe"
    )
    
    type mOS struct {
    	initialized bool
    	mutex       pthreadmutex
    	cond        pthreadcond
    	count       int
    }
    
    func unimplemented(name string) {
    	println(name, "not implemented")
    	*(*int)(unsafe.Pointer(uintptr(1231))) = 1231
    }
    
    //go:nosplit
    func semacreate(mp *m) {
    	if mp.initialized {
    		return
    	}
    	mp.initialized = true
    	if err := pthread_mutex_init(&mp.mutex, nil); err != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/FixedSharedModeCrossProcessCacheAccessIntegrationTest.groovy

            """
    
            when:
            // start a build with a IsolationMode.PROCESS worker that will initialize the worker classpath cache and wait until the cache was initialized
            def block = server.expectAndBlock("waiting")
            def build = executer.withTasks("doWork").start()
            block.waitForAllPendingCalls()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:52 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. pkg/apis/autoscaling/v2/defaults.go

    		obj.Spec.Behavior.ScaleUp = GenerateHPAScaleUpRules(obj.Spec.Behavior.ScaleUp)
    		obj.Spec.Behavior.ScaleDown = GenerateHPAScaleDownRules(obj.Spec.Behavior.ScaleDown)
    	}
    }
    
    // GenerateHPAScaleUpRules returns a fully-initialized HPAScalingRules value
    // We guarantee that no pointer in the structure will have the 'nil' value
    func GenerateHPAScaleUpRules(scalingRules *autoscalingv2.HPAScalingRules) *autoscalingv2.HPAScalingRules {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 15 06:03:59 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/sys/cpu/cpu_linux.go

    // license that can be found in the LICENSE file.
    
    //go:build !386 && !amd64 && !amd64p32 && !arm64
    
    package cpu
    
    func archInit() {
    	if err := readHWCAP(); err != nil {
    		return
    	}
    	doinit()
    	Initialized = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 322 bytes
    - Viewed (0)
  7. src/runtime/security_linux.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime
    
    import _ "unsafe"
    
    func initSecureMode() {
    	// We have already initialized the secureMode bool in sysauxv.
    }
    
    func isSecureMode() bool {
    	return secureMode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 335 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Basic.h

     *  previously changed using CU_basic_set_mode().  The CUnit test
     *  registry must have been initialized before calling this function.
     *
     *  @return A CU_ErrorCode indicating the framework error condition, including
     *          CUE_NOREGISTRY - Registry has not been initialized.
     */
    
    CU_EXPORT CU_ErrorCode CU_basic_run_suite(CU_pSuite pSuite);
    /**< 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/saved_model/core/revived_types/partially_revived_objects.cc

          if (variables_iter == objects.variables.end()) {
            return absl::FailedPreconditionError(absl::StrCat(
                "Tried to convert node id ", node_id,
                " of type variable to tensor but the variable wasn't initialized"));
          }
          *handle = variables_iter->second->handle();
          return Status();
        }
        case SavedObject::kConstant: {
          const auto& constants_iter = objects.constants.find(node_id);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 20:11:48 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  10. platforms/software/resources/src/test/groovy/org/gradle/internal/resource/DownloadedUriTextResourceTest.groovy

        }
    
        def "should not exists when downloaded file is not initialized"() {
            when:
            underTest = new DownloadedUriTextResource("Test description", sourceUri, "", downloadedFile, resolver)
    
            then:
            !underTest.getExists()
        }
    
        def "should exists when downloaded file is initialized"() {
            when:
            downloadedFile.text = "Some content"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top