Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of about 10,000 for bases (0.16 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ComponentMetadataHandlerExtensions.kt

    
    /**
     * Adds a class based rule that may modify the metadata of any resolved software component.
     *
     * @param T the rule to be added
     * @return this
     *
     * @see [ComponentMetadataHandler.all]
     */
    inline fun <reified T : ComponentMetadataRule> ComponentMetadataHandler.all(): ComponentMetadataHandler =
        all(T::class.java)
    
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. cluster/images/etcd/migrate/versions_test.go

    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package main
    
    import (
    	"testing"
    
    	"github.com/blang/semver/v4"
    )
    
    func TestSerializeEtcdVersionPair(t *testing.T) {
    	cases := []struct {
    		versionTxt string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 07:33:23 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  3. pkg/version/version_test.go

    // distributed under the License is distributed on an "AS IS" BASIS,
    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package version
    
    import (
    	"fmt"
    	"runtime"
    	"testing"
    )
    
    func TestNewBuildInfoFromOldString(t *testing.T) {
    	cases := []struct {
    		name       string
    		in         string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/webhook/metrics.go

    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package webhook
    
    import (
    	"k8s.io/component-base/metrics"
    	"k8s.io/component-base/metrics/legacyregistry"
    )
    
    var x509MissingSANCounter = metrics.NewCounter(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 14:39:30 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  5. pkg/controlplane/reconcilers/none.go

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package reconcilers a noop based reconciler
    package reconcilers
    
    import (
    	"net"
    
    	corev1 "k8s.io/api/core/v1"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 11:45:48 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/building/TransformerContext.java

        /**
         * Get the model based on the path when resolving the parent based on relativePath.
         *
         * @param from    the requiring model
         * @param pomFile the path to the pomFile
         * @return the model, otherwise {@code null}
         */
        Model getRawModel(Path from, Path pomFile);
    
        /**
         * Get the model from the reactor based on the groupId and artifactId when resolving reactor dependencies.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 07 08:20:52 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/ListeningScheduledExecutorService.java

     *
     * http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software distributed under the License
     * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
     * or implied. See the License for the specific language governing permissions and limitations under
     * the License.
     */
    
    package com.google.common.util.concurrent;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/GidGenerator.java

     *
     * The GID is a 96 bit identifier that's unique on a per-project basis.
     */
    public class GidGenerator {
        private final Set<String> generatedAndReservedIds;
    
        public GidGenerator(Set<String> reservedIds) {
            generatedAndReservedIds = Sets.newHashSet(reservedIds);
        }
    
        /**
         * Generate a stable GID based on the class name and hash of some object info.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/JavaToolchainRepositoryHandler.java

    import java.util.List;
    
    /**
     * {@link org.gradle.api.NamedDomainObjectList} based handler for configuring an
     * ordered collection of <code>JavaToolchainRepository</code> implementations.
     *
     * @since 7.6
     */
    @Incubating
    public interface JavaToolchainRepositoryHandler {
    
        /**
         * Utility method for creating a named {@link JavaToolchainRepository} based on
         * a configuration block.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:17:59 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. pkg/kubeapiserver/authorizer/modes/modes.go

    	ModeAlwaysDeny string = "AlwaysDeny"
    	// ModeABAC is the mode to use Attribute Based Access Control to authorize
    	ModeABAC string = "ABAC"
    	// ModeWebhook is the mode to make an external webhook call to authorize
    	ModeWebhook string = "Webhook"
    	// ModeRBAC is the mode to use Role Based Access Control to authorize
    	ModeRBAC string = "RBAC"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 05 01:22:41 UTC 2018
    - 1.6K bytes
    - Viewed (0)
Back to top