Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 711 for zonder (0.2 sec)

  1. platforms/documentation/docs/src/docs/css/base.css

        padding-top: 0;
    }
    
    .bottom {
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .citetitle {
        font-style: normal;
    }
    
    table th.border-right {
        border-right: solid #d0d0d0 1px;
    }
    
    table th.no-border-bottom {
        border-bottom: none;
    }
    
    h3.releaseinfo {
        color: #999;
        font-weight: normal;
        margin-top: -0.5em;
    }
    
    /* Site header specific styles */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  2. pkg/volume/util/attach_limit.go

    	GCEVolumeLimitKey = "attachable-volumes-gce-pd"
    
    	// CinderVolumeLimitKey contains Volume limit key for Cinder
    	CinderVolumeLimitKey = "attachable-volumes-cinder"
    	// DefaultMaxCinderVolumes defines the maximum number of PD Volumes for Cinder
    	// For Openstack we are keeping this to a high enough value so as depending on backend
    	// cluster admins can configure it.
    	DefaultMaxCinderVolumes = 256
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 17:25:30 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  3. subprojects/core/src/main/resources/org/gradle/reporting/base-style.css

        padding-top: 5px;
        padding-bottom: 5px;
        margin-bottom: 0;
        -moz-border-radius: 7px;
        border-radius: 7px;
        margin-right: 25px;
        border: solid 1px #d4d4d4;
        background-color: #f0f0f0;
    }
    
    ul.tabLinks li:hover {
        background-color: #fafafa;
    }
    
    ul.tabLinks li.selected {
        background-color: #c5f0f5;
        border-color: #c5f0f5;
    }
    
    ul.tabLinks a {
        font-size: 120%;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 10 15:05:34 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/file/FileOrUriNotationConverterTest.groovy

    class FileOrUriNotationConverterTest extends Specification {
    
        @Rule public TestNameTestDirectoryProvider folder = new TestNameTestDirectoryProvider(getClass());
    
        def "with File returns this File"() {
            setup:
            def testFile = folder.createFile("test1")
            when:
            def object = parse(testFile)
            then:
            object instanceof File
            testFile == object
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 16:59:26 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/TypeSafeProjectDependencyFactory.java

        private final ProjectFinder finder;
    
        protected TypeSafeProjectDependencyFactory(DefaultProjectDependencyFactory factory, ProjectFinder finder) {
            this.factory = factory;
            this.finder = finder;
        }
    
        protected ProjectDependencyInternal create(String path) {
            return (ProjectDependencyInternal) factory.create(finder.getProject(path));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/plugins/form-validator/theme-default.min.css

    sPgMCEAY7Cg04Uk48LAsDhRA8MVQPEF0GAgqYYwSRlycNcWskCkApIyEAOwAAAAAAAAAAAA==);background-position:right 5px center;background-repeat:no-repeat;background-color:#FFF}div.form-error{background-color:#f2dede;padding:15px;margin-bottom:20px;border:1px solid #b94a48;border-radius:4px}div.form-error strong{font-weight:700;display:block;margin:0;padding:0 0 10px}div.form-error strong,div.form-error ul li{line-height:140%;color:#b94a48;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px}div.form-error...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 33.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/UnboundRulesProcessorTest.groovy

            )
        }
    
        def "creates unbound rules for multiple binders"() {
            binder {
                descriptor("firstRule")
                subjectReference("path.subject.first", String)
            }
            binder {
                descriptor("secondRule")
                subjectReference("path.subject.second", Number)
            }
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/SourceFolderTest.groovy

        }
    
        def createSourceFolder() {
            SourceFolder folder = new SourceFolder('src', 'bin2')
            folder.nativeLibraryLocation = 'mynative'
            folder.accessRules += [new AccessRule('nonaccessible', 'secret**')]
            folder.includes += ['**/Test1*', '**/Test2*']
            folder.excludes += ['**/Test3*', '**/Test4*']
            return folder
        }
    
        def "ignores null dir in equality"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/AbstractCacheCleanupTest.groovy

            deletedFiles == [file, parent]
        }
    
        FilesFinder finder(files) {
            Stub(FilesFinder) {
                find(_, _) >> { baseDir, filter ->
                    assert filter instanceof NonReservedFileFilter
                    files.findAll { filter.accept(it) }
                }
            }
        }
    
        AbstractCacheCleanup cleanupAction(FilesFinder finder, Spec<File> spec) {
            new AbstractCacheCleanup(finder) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/RootProjectAccessorSourceGenerator.java

            writeLn();
            writeLn("    @Inject");
            writeLn("    public " + className + "(DefaultProjectDependencyFactory factory, ProjectFinder finder) {");
            writeLn("        super(factory, finder);");
            writeLn("    }");
            writeLn();
            writeProjectAccessor(toJavaName(rootProjectName(current)), current);
            processChildren(current);
    
            writeLn("}");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top