Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 66 of 66 for Forbid (0.12 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/named_certificates.go

    	if !cnIsIP && cnIsValidDomain {
    		names = append(names, cn)
    	}
    	names = append(names, cert.DNSNames...)
    	// intentionally all IPs in the cert are ignored as SNI forbids passing IPs
    	// to select a cert. Before go 1.6 the tls happily passed IPs as SNI values.
    
    	return names
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 21 07:29:30 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/permissions/permissions.kt

    import org.jetbrains.kotlin.analysis.api.KaAnalysisApiInternals
    import org.jetbrains.kotlin.analysis.api.permissions.KaAnalysisPermissionRegistry.KaExplicitAnalysisRestriction
    
    /**
     * Forbids [analyze][org.jetbrains.kotlin.analysis.api.analyze] to be called in the given [action].
     *
     * @param description A human-readable description of the [action], which is used to generate error messages when
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/plugins/DefaultPluginContainer.java

     * are only applied once. As a result, we don't need to keep another data structure here,
     * but can just share the one kept by the manager. This class forbids all mutations, as
     * manually adding/removing plugin instances does not make sense.
     */
    public class DefaultPluginContainer extends DefaultPluginCollection<Plugin> implements PluginContainer {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jul 30 13:07:05 UTC 2020
    - 6.4K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/DependencyScope.java

        private static final Map<String, DependencyScope> IDS = Collections.unmodifiableMap(
                Stream.of(DependencyScope.values()).collect(Collectors.toMap(s -> s.id, s -> s)));
    
        public static DependencyScope forId(String id) {
            return IDS.get(id);
        }
    
        private final String id;
        private final boolean transitive;
    
        DependencyScope(String id, boolean transitive) {
            this.id = id;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 27 14:46:12 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. pkg/controller/nodelifecycle/scheduler/rate_limited_queue.go

    // be retried, with an optional time.Duration if some minimum wait
    // interval should be used.
    type ActionFunc func(TimedValue) (bool, time.Duration)
    
    // Try processes the queue.Ends prematurely if RateLimiter forbids an
    // action and leak is true. Otherwise, requeues the item to be
    // processed. Each value is processed once if fn returns true,
    // otherwise it is added back to the queue. The returned remaining is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 07:50:01 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  6. tests/associations_belongs_to_test.go

    	AssertAssociationCount(t, users[1], "Company", 1, "After other user Delete")
    }
    
    func TestBelongsToDefaultValue(t *testing.T) {
    	type Org struct {
    		ID string
    	}
    	type BelongsToUser struct {
    		OrgID string
    		Org   Org `gorm:"default:NULL"`
    	}
    
    	tx := DB.Session(&gorm.Session{})
    	tx.Config.DisableForeignKeyConstraintWhenMigrating = true
    	AssertEqual(t, DB.Config.DisableForeignKeyConstraintWhenMigrating, false)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Oct 30 09:15:49 UTC 2023
    - 9.3K bytes
    - Viewed (0)
Back to top