Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 542 for free1 (0.04 sec)

  1. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/PlatformNativeComponentReportIntegrationTest.groovy

            flavor: flavor 'free'
            target platform: platform 'amd64'
            tool chain: Tool chain 'clang' (Clang)
            shared library file: build/libs/someLib/shared/amd64/free/libsomeLib.dylib
        Static library 'someLib:amd64:free:staticLibrary'
            build using task: :someLibAmd64FreeStaticLibrary
            build type: build type 'debug'
            flavor: flavor 'free'
            target platform: platform 'amd64'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DefaultCompositeFileTreeTest.groovy

        def "dependencies are union of dependencies of source trees"() {
            def task1 = Stub(Task)
            def task2 = Stub(Task)
            def task3 = Stub(Task)
            def tree1 = Stub(FileTreeInternal)
            def tree2 = Stub(FileTreeInternal)
    
            given:
            tree1.visitDependencies(_) >> { TaskDependencyResolveContext context ->
                context.add(task1)
                context.add(task2)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUnit_intl.h

    /*
     *  CUnit - A Unit testing framework library for C.
     *  Copyright (C) 2006  Jerry St.Clair
     *
     *  This library is free software; you can redistribute it and/or
     *  modify it under the terms of the GNU Library General Public
     *  License as published by the Free Software Foundation; either
     *  version 2 of the License, or (at your option) any later version.
     *
     *  This library is distributed in the hope that it will be useful,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Console.h

     *  Copyright (C) 2001       Anil Kumar
     *  Copyright (C) 2004-2006  Anil Kumar, Jerry St.Clair
     *
     *  This library is free software; you can redistribute it and/or
     *  modify it under the terms of the GNU Library General Public
     *  License as published by the Free Software Foundation; either
     *  version 2 of the License, or (at your option) any later version.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. pkg/util/concurrent/debouncer.go

    		}
    	}
    
    	for {
    		select {
    		case <-freeCh:
    			free = true
    			pushWorker()
    		case r := <-ch:
    
    			lastConfigUpdateTime = time.Now()
    			if debouncedEvents == 0 {
    				timeChan = time.After(debounceMinInterval)
    				startDebounce = lastConfigUpdateTime
    			}
    			debouncedEvents++
    
    			combinedEvents = combinedEvents.Insert(r)
    		case <-timeChan:
    			if free {
    				pushWorker()
    			}
    		case <-stopCh:
    			return
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 01 13:44:06 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. src/runtime/traceexp.go

    	traceEvSpanFree  // heap span free [timestamp, id]
    
    	// Experimental heap object events. IDs map reversibly to addresses.
    	traceEvHeapObject      // heap object exists [timestamp, id, type]
    	traceEvHeapObjectAlloc // heap object alloc [timestamp, id, type]
    	traceEvHeapObjectFree  // heap object free [timestamp, id]
    
    	// Experimental goroutine stack events. IDs map reversibly to addresses.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. pkg/kubelet/prober/scale_test.go

    	statustest "k8s.io/kubernetes/pkg/kubelet/status/testing"
    	kubeletutil "k8s.io/kubernetes/pkg/kubelet/util"
    	utilpointer "k8s.io/utils/pointer"
    )
    
    // TCP sockets goes through a TIME-WAIT state (default 60 sec) before being freed,
    // causing conntrack entries and ephemeral ports to be hold for 60 seconds
    // despite the probe may have finished in less than 1 second.
    // If the rate of probes is higher than the rate the OS recycles the ports used,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 16:33:01 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/MemoryManager.java

         * @param holder The memory resource holder to unregister
         */
        void removeMemoryHolder(MemoryHolder holder);
    
        /**
         * Request an amount of free system memory.
         *
         * Attempt to free as much memory as possible to get {@literal memoryAmountBytes}
         * of free memory available on the system.
         *
         * @param memoryAmountBytes The requested amount of memory in bytes. If negative, {@literal 0} is assumed.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. cmd/metrics-v3-cluster-health.go

    // Copyright (c) 2015-2024 MinIO, Inc.
    //
    // This file is part of MinIO Object Storage stack
    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 10 09:15:15 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerDaemonExpirationIntegrationTest.groovy

            ['a', 'b'].each { file("$it/src/main/java/p/Type.java") << 'package p; class Type {}' }
        }
    
        def "expire worker daemons to free system memory"() {
            when:
            withDebugLogging()
            succeeds 'expireWorkers'
    
            then:
            outputContains 'Worker Daemon(s) expired to free some system memory'
        }
    
        def "worker daemons expiration can be disabled using a system property"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top