Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,419 for relisting (0.21 sec)

  1. cni/pkg/install/cniconfig_test.go

    			chainedCNIPlugin: true,
    		},
    		{
    			name:              "specified existing CNI config file",
    			chainedCNIPlugin:  true,
    			specifiedConfName: "list.conflist",
    			expectedConfName:  "list.conflist",
    			existingConfFiles: []string{"bridge.conf", "list.conflist"},
    		},
    		{
    			name:              "specified existing CNI config file (.conf to .conflist)",
    			chainedCNIPlugin:  true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/main/java/org/gradle/api/plugins/BasePluginExtension.java

        /**
         * This method is only here to maintain compatibility with existing builds.
         *
         * @deprecated Use {@link #getDistsDirectory()}. This method is scheduled for removal in Gradle 9.0.
         */
        @Deprecated
        String getDistsDirName();
    
        /**
         * This method is only here to maintain compatibility with existing builds.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AccessTrackingPropertiesNonStringTest.groovy

            then:
            result
            1 * listener.onAccess(EXISTING_KEY, EXISTING_VALUE)
            1 * listener.onAccess('existing', 'existingStringValue')
            1 * listener.onAccess('keyWithNonStringValue', NON_STRING_VALUE)
            1 * listener.onRemove(EXISTING_KEY)
            1 * listener.onRemove('existing')
            1 * listener.onRemove('keyWithNonStringValue')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  4. src/crypto/tls/fipsonly/fipsonly.go

    package fipsonly
    
    // This functionality is provided as a side effect of an import to make
    // it trivial to add to an existing program. It requires only a single line
    // added to an existing source file, or it can be done by adding a whole
    // new source file and not modifying any existing source files.
    
    import (
    	"crypto/internal/boring/fipstls"
    	"crypto/internal/boring/sig"
    )
    
    func init() {
    	fipstls.Force()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 14:23:22 UTC 2022
    - 901 bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/gatewayclass.go

    	}
    	if err != nil {
    		return err
    	}
    
    	return nil
    }
    
    func GetClassStatus(existing *k8sv1.GatewayClassStatus, gen int64) k8sv1.GatewayClassStatus {
    	if existing == nil {
    		existing = &k8sv1.GatewayClassStatus{}
    	}
    	existing.Conditions = kstatus.UpdateConditionIfChanged(existing.Conditions, metav1.Condition{
    		Type:               string(k8sv1.GatewayClassConditionStatusAccepted),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/TaskContainerExtensionsTest.kt

            }
        }
    
        @Test
        fun `val task by existing { }`() {
    
            // given:
            val taskProvider = mockTaskProviderFor(mock<Task>())
            val tasks = mock<TaskContainer> {
                on { named("clean") } doReturn taskProvider
            }
    
            // then:
            tasks {
                // invoke syntax
                val clean by existing {
                    assertInferredTypeOf(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectCollectionExtensionsTest.kt

                }
            }
    
            container.apply {
                // regular syntax
                val domainObject by existing
                assertThat(domainObject, sameInstance(elementProvider))
            }
        }
    
        @Test
        fun `val domainObject by existing { }`() {
    
            val element = DomainObject()
            val elementProvider = mockDomainObjectProviderFor(element)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  8. docs/bucket/replication/setup_3site_replication.sh

    	--remote-bucket http://minio:minio123@127.0.0.1:9004/bucket \
    	--replicate "existing-objects,delete,delete-marker,replica-metadata-sync"
    sleep 1
    
    echo "adding replication rule for b -> a : ${remote_arn}"
    ./mc replicate add siteb/bucket/ \
    	--remote-bucket http://minio:minio123@127.0.0.1:9001/bucket \
    	--replicate "existing-objects,delete,delete-marker,replica-metadata-sync"
    sleep 1
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/FolderBasedTest.kt

            root.withFolders(folders)
    
        fun folder(path: String): File =
            existing(path).apply {
                assert(isDirectory)
            }
    
        fun file(path: String): File =
            existing(path).apply {
                assert(isFile)
            }
    
        private
        fun existing(path: String): File =
            File(root, path).canonicalFile.apply {
                assert(exists())
            }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/api/FileContentMerger.java

        }
    
    
        /**
         * Adds an action to be called after content is loaded from existing file but before gradle build information is merged.
         * <p>
         * This is advanced api that gives access to internal implementation.
         * It might be useful if you want to alter the way gradle build information is merged into existing file content.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top