Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 246 for retractions (0.31 sec)

  1. staging/README.md

       for creating the staging repository.
    
    2. Once approval has been granted, create the new staging repository.
    
    3. Update
       [`import-restrictions.yaml`](/staging/publishing/import-restrictions.yaml)
       to add the list of other staging repos that this new repo can import.
    
    4. Add all mandatory template files to the staging repo as mentioned in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 11:23:09 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. src/net/textproto/reader_test.go

    	{"230-Anonymous access granted, restrictions apply\n" +
    		"Read the file README.txt,\n" +
    		"230  please",
    		23,
    		230,
    		"Anonymous access granted, restrictions apply\nRead the file README.txt,\n please",
    	},
    
    	{"230 Anonymous access granted, restrictions apply\n",
    		23,
    		230,
    		"Anonymous access granted, restrictions apply",
    	},
    
    	{"400-A\n400-B\n400 C",
    		4,
    		400,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 05 18:31:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  3. test/alias2.go

    // errorcheck
    
    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test basic restrictions on type aliases.
    
    package p
    
    import (
    	"reflect"
    	. "reflect"
    )
    
    type T0 struct{}
    
    // Valid type alias declarations.
    
    type _ = T0
    type _ = int
    type _ = struct{}
    type _ = reflect.Value
    type _ = Value
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:09:14 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/troubleshooting/version_catalog_problems.adoc

    To fix this problem, you must choose different aliases.
    
    [[too_many_entries]]
    == Too many entries in a single catalog
    
    This error indicates that a version catalog contains too many entries.
    Because of JVM file format restrictions, when Gradle generates dependency accessors, it has to put an upper limit to the number of aliases that a catalog may contain.
    This limit is currently of 32000 entries.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 13 21:49:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509.go

    		return nil, false, err
    	}
    	return a.auth.AuthenticateRequest(req)
    }
    
    func (a *Verifier) verifySubject(subject pkix.Name) error {
    	// No CN restrictions
    	if len(a.allowedCommonNames.Value()) == 0 {
    		return nil
    	}
    	// Enforce CN restrictions
    	for _, allowedCommonName := range a.allowedCommonNames.Value() {
    		if allowedCommonName == subject.CommonName {
    			return nil
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 18 01:31:22 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/resource_operation_safety_analysis.h

    // are problematic.  This analysis returns the set of pairs of resource
    // operations that cannot be put in the same cluster because XLA cannot respect
    // the dependencies between them in the TensorFlow program.
    //
    // The restrictions are not transitive: it is fine to put A and C in the same
    // cluster even if the returned set contains (A,B) and (B,C).
    //
    // In other words, if these pairs are seen as edges in an undirected graph of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-spi.h

    //
    // The verification of the assertion is done correctly even when the statement
    // throws an exception or aborts the current function.
    //
    // Known restrictions:
    //   - 'statement' cannot reference local non-static variables or
    //     non-static members of the current object.
    //   - 'statement' cannot return a value.
    //   - You cannot stream a failure message to this macro.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-spi.h

    //
    // The verification of the assertion is done correctly even when the statement
    // throws an exception or aborts the current function.
    //
    // Known restrictions:
    //   - 'statement' cannot reference local non-static variables or
    //     non-static members of the current object.
    //   - 'statement' cannot return a value.
    //   - You cannot stream a failure message to this macro.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/TaskInternal.java

    import java.io.File;
    import java.util.List;
    import java.util.Optional;
    import java.util.Set;
    
    public interface TaskInternal extends Task, Configurable<Task> {
    
        /**
         * A more efficient version of {@link #getActions()}, which circumvents the
         * validating change listener that normally prevents users from changing tasks
         * once they start executing.
         */
        @Internal
        List<InputChangesAwareTaskAction> getTaskActions();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:29:30 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/under.go

    // type set contains only unrestricted and restricted channel types (with
    // identical element types), the single underlying type is the restricted
    // channel type if the restrictions are always the same, or nil otherwise.
    func coreType(t Type) Type {
    	t = Unalias(t)
    	tpar, _ := t.(*TypeParam)
    	if tpar == nil {
    		return under(t)
    	}
    
    	var su Type
    	if tpar.underIs(func(u Type) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 22:34:27 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top