Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 4,797 for assist (0.16 sec)

  1. pkg/kubelet/pod_workers.go

    // pods should be provided via UpdatePod before SyncKnownPods is invoked).
    // Generally other sync loops are expected to separate "setup" and
    // "teardown" responsibilities and the information methods here assist in
    // each by centralizing that state. A simple visualization of the time
    // intervals involved might look like:
    //
    // ---|                                         = kubelet config has synced at least once
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  2. api/maven-api-model/src/main/mdo/maven.mdo

              <description>
                The URL of the project's download page. If not given users will be
                referred to the homepage given by {@code url}.
                This is given to assist in locating artifacts that are not in the repository due to
                licensing restrictions.
              </description>
              <type>String</type>
            </field>
            <field>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    						},
    					},
    					"format": {
    						SchemaProps: spec.SchemaProps{
    							Description: "format is an optional OpenAPI type definition for this column. The 'name' format is applied to the primary identifier column to assist in clients identifying column is the resource name. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.",
    							Type:        []string{"string"},
    							Format:      "",
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalSwiftElement.java

         * Both elements must have the same location.
         */
        protected static Transform modify(final SourceFileElement beforeElement, SourceFileElement afterElement) {
            assert beforeElement.getFiles().size() == 1;
            assert afterElement.getFiles().size() == 1;
            assert beforeElement.getSourceSetName().equals(afterElement.getSourceSetName());
            final String sourceSetName = beforeElement.getSourceSetName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/ProviderTestUtil.java

        }
    
        public static <T> ProviderInternal<T> withChangingExecutionTimeValues(Class<T> cls, T... values) {
            assert values.length > 0;
            return new TestProviderWithChangingValue<>(Cast.uncheckedNonnullCast(cls), Arrays.asList(values), null);
        }
    
        public static <T> ProviderInternal<T> withProducer(Class<T> type, Task producer, T... values) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 05:02:13 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/MavenInvocationSpec.groovy

                    mavenInstallation = eventuallyDownloadMavenHome()
                    mavenHome = mavenInstallation.home
                }
                assert mavenVersion != null
                assert mavenHome != null
                assert workingDirectory != null
                mavenInstallation = mavenInstallation ?: new MavenInstallation(mavenVersion, mavenHome)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ProjectLifecycleFixture.groovy

               }
               gradle.addListener(listener)
           """
        }
    
        void afterBuild() {
            configuredProjects = asList(fixtureData.text.split(";"))
            assert fixtureData.delete()
        }
    
        void assertProjectsConfigured(String ... projectPaths) {
            assert configuredProjects == projectPaths
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. docs/de/docs/how-to/custom-docs-ui-assets.md

    # Statische Assets der Dokumentationsoberfläche (selbst hosten)
    
    Die API-Dokumentation verwendet **Swagger UI** und **ReDoc**, und jede dieser Dokumentationen benötigt einige JavaScript- und CSS-Dateien.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. docs/en/docs/how-to/custom-docs-ui-assets.md

    # Custom Docs UI Static Assets (Self-Hosting)
    
    The API docs use **Swagger UI** and **ReDoc**, and each of those need some JavaScript and CSS files.
    
    By default, those files are served from a <abbr title="Content Delivery Network: A service, normally composed of several servers, that provides static files, like JavaScript and CSS. It's commonly used to serve those files from the server closer to the client, improving performance.">CDN</abbr>.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/core/collection/MultiIteratorTest.java

        /**
         *
         */
        @Test
        public void test() {
            final List<String> list1 = asList("Foo", "Bar");
            final List<String> list2 = asList("Baz");
    
            @SuppressWarnings("unchecked")
            final Iterator<String> it = new MultiIterator<String>(list1.iterator(), list2.iterator());
    
            assertThat(it.hasNext(), is(true));
            assertThat(it.next(), is("Foo"));
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top