Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,235 for holder2 (0.3 sec)

  1. platforms/core-runtime/process-services/src/test/groovy/org/gradle/process/internal/health/memory/DefaultMemoryManagerTest.groovy

            and:
            def holder1 = Mock(MemoryHolder)
            def holder2 = Mock(MemoryHolder)
            memoryManager.addMemoryHolder(holder1)
            memoryManager.addMemoryHolder(holder2)
    
            when:
            memoryManager.requestFreeMemory(MemoryAmount.ofGigaBytes(5).bytes)
    
            then:
            1 * holder1.attemptToRelease(_) >> MemoryAmount.ofGigaBytes(2).bytes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 23:56:19 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers_test.go

    		}
    		if !reflect.DeepEqual(test.expected, rows) {
    			t.Errorf("%d mismatch: %s", i, cmp.Diff(test.expected, rows))
    		}
    	}
    }
    
    func TestPrintLease(t *testing.T) {
    	holder1 := "holder1"
    	holder2 := "holder2"
    	tests := []struct {
    		lease    coordination.Lease
    		expected []metav1.TableRow
    	}{
    		{
    			lease: coordination.Lease{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/test/groovy/org/gradle/api/reporting/components/internal/SourceSetRendererTest.groovy

        File srcFolder1 = new File("src/folder1")
        File srcFolder2 = new File("src/folder2")
    
        def setup() {
            _ * languageSourceSet.displayName >> "acme:sample"
            _ * languageSourceSet.source >> sourceDirectorySet
            _ * sourceDirectorySet.srcDirs >> [srcFolder1, srcFolder2]
            _ * sourceDirectorySet.filter >> filter
        }
    
        def "shows sourceSet folders"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 08 05:52:01 UTC 2020
    - 4.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/DefaultMemoryManager.java

            }
        }
    
        @Override
        public void addMemoryHolder(MemoryHolder holder) {
            synchronized (holdersLock) {
                holders.add(holder);
            }
        }
    
        @Override
        public void removeMemoryHolder(MemoryHolder holder) {
            synchronized (holdersLock) {
                holders.remove(holder);
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/DefaultCopySpecTest.groovy

            PatternMatcher matcher = copyAction.matcher
    
            ['root/folder1/folder2', 'modules/project1'].each {
                assertMatches matcher, it
            }
    
            ['archive/folder/file', 'root/archives/file', 'root/folder/abc',
             'collections/folder/file', 'root/collections/file', 'archives/collections/file',
             'root/folder/cde'].each {
                assertMatches matcher.negate(), it
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 26 08:05:50 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  6. apache-maven/src/main/appended-resources/licenses/BSD-2-Clause.txt

    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
    “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
    FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
    HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/folders.cc

    Luke Boyer <******@****.***> 1715148352 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 06:11:55 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/folders.h

    Luke Boyer <******@****.***> 1714601324 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 22:33:06 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. licenses/github.com/vbatts/tar-split/LICENSE

    and/or other materials provided with the distribution.
    
    3. Neither the name of the copyright holder nor the names of its contributors
    may be used to endorse or promote products derived from this software without
    specific prior written permission.
    
    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 02 05:00:12 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  10. licenses/go.starlark.net/LICENSE

       documentation and/or other materials provided with the
       distribution.
    
    3. Neither the name of the copyright holder nor the names of its
       contributors may be used to endorse or promote products derived
       from this software without specific prior written permission.
    
    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
    "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 22 22:59:25 UTC 2021
    - 1.5K bytes
    - Viewed (0)
Back to top