Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 246 for retractions (0.16 sec)

  1. guava/src/com/google/common/net/PercentEscaper.java

     * directly if required. While URI escapers impose specific semantics on which characters are
     * considered 'safe', this class has a minimal set of restrictions.
     *
     * <p>When escaping a String, the following rules apply:
     *
     * <ul>
     *   <li>All specified safe characters remain unchanged.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  2. src/runtime/mem.go

    // the address space. It is okay if sysFree is a no-op only if sysReserve always
    // returns a memory region aligned to the heap allocator's alignment
    // restrictions.
    //
    // sysStat must be non-nil.
    //
    // Don't split the stack as this function may be invoked without a valid G,
    // which prevents us from allocating more stack.
    //
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  3. pkg/controller/certificates/signer/signer.go

    }
    
    func isLegacyUnknown(req *x509.CertificateRequest, usages []capi.KeyUsage, signerName string) (bool, error) {
    	if signerName != capiv1beta1.LegacyUnknownSignerName {
    		return false, nil
    	}
    	// No restrictions are applied to the legacy-unknown signerName to
    	// maintain backward compatibility in v1.
    	return true, nil
    }
    
    func validAPIServerClientUsages(usages []capi.KeyUsage) error {
    	hasClientAuth := false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:26:08 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelElementNode.java

                );
            }
            if (links == null) {
                links = new TreeMap<>();
            }
            links.put(child.getPath().getName(), child);
            modelRegistry.registerNode(child, registration.getActions());
        }
    
        @Override
        public void removeLink(String name) {
            if (links!=null && links.remove(name) != null) {
                modelRegistry.remove(getPath().child(name));
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. src/cmd/internal/dwarf/putvarabbrevgen_test.go

    // abbrev is also generated automatically by this function by looking at all
    // the possible paths in their CFG and the order in which putattr is called.
    //
    // There are some restrictions on how putattr can be used in putvar and
    // putAbstractVar:
    //
    //  1. it shouldn't appear inside a for or switch statements
    //  2. it can appear within any number of nested if/else statements but the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. src/net/mail/message.go

    // readHeader reads the message headers from r.
    // This is like textproto.ReadMIMEHeader, but doesn't validate.
    // The fix for issue #53188 tightened up net/textproto to enforce
    // restrictions of RFC 7230.
    // This package implements RFC 5322, which does not have those restrictions.
    // This function copies the relevant code from net/textproto,
    // simplified for RFC 5322.
    func readHeader(r *textproto.Reader) (map[string][]string, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  7. src/math/big/alias_test.go

    	if out := f(v1, x, v1); out != v1 || !equal(v1, v) {
    		t.Logf("f(v, x, y) != f(y, x, y)")
    		return false
    	}
    
    	// Calculate a reference f(y, y) without aliasing.
    	// We use y because it's the one that commonly has restrictions
    	// like being prime or non-zero.
    	v1.Set(v)
    	y2 := new(big.Int).Set(y)
    	if out := f(v, y, y2); out == nil {
    		return equal(y, y1) && equal(y2, y1) && equal(v, v1)
    	} else if out != v {
    		return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 15:49:05 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  8. pkg/apis/certificates/types.go

    	//  2. Permitted subjects: and behavior when a disallowed subject is requested.
    	//  3. Required, permitted, or forbidden x509 extensions in the request (including whether subjectAltNames are allowed, which types, restrictions on allowed values) and behavior when a disallowed extension is requested.
    	//  4. Required, permitted, or forbidden key usages / extended key usages.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 11K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/project/taskfactory/AnnotationProcessingTaskFactoryTest.groovy

            expect:
            task.getActions().isEmpty()
        }
    
        def propagatesExceptionThrownByTaskActionMethod() {
            given:
            def action = Stub(Runnable, {
                run() >> {
                    throw new RuntimeException()
                }
            })
            def task = expectTaskCreated(TestTask, action)
    
            when:
            task.getActions().get(0).execute(task)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/certificates/v1/generated.proto

      //  2. Permitted subjects: and behavior when a disallowed subject is requested.
      //  3. Required, permitted, or forbidden x509 extensions in the request (including whether subjectAltNames are allowed, which types, restrictions on allowed values) and behavior when a disallowed extension is requested.
      //  4. Required, permitted, or forbidden key usages / extended key usages.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top