Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for retracted (1.77 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	{49, "SIGCAPI", "signal 49"},
    	{58, "SIGRECONFIG", "signal 58"},
    	{59, "SIGCPUFAIL", "CPU Failure Predicted"},
    	{60, "SIGGRANT", "monitor mode granted"},
    	{61, "SIGRETRACT", "monitor mode retracted"},
    	{62, "SIGSOUND", "sound completed"},
    	{63, "SIGMAX32", "secure attention"},
    	{255, "SIGMAX", "signal 255"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go

    	{49, "SIGCAPI", "signal 49"},
    	{58, "SIGRECONFIG", "signal 58"},
    	{59, "SIGCPUFAIL", "CPU Failure Predicted"},
    	{60, "SIGKAP", "monitor mode granted"},
    	{61, "SIGRETRACT", "monitor mode retracted"},
    	{62, "SIGSOUND", "sound completed"},
    	{63, "SIGSAK", "secure attention"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modget/get.go

    	for i := range retractions {
    		i := i
    		r.work.Add(func() {
    			err := modload.CheckRetractions(ctx, retractions[i].m)
    			if retractErr := (*modload.ModuleRetractedError)(nil); errors.As(err, &retractErr) {
    				retractions[i].message = err.Error()
    			}
    		})
    	}
    
    	// Load deprecations for modules mentioned on the command line. Only load
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    					myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    						"restricted": map[string]interface{}{
    							"key1": "hi",
    							"key2": "there",
    						},
    					}},
    				patchMyCRDV1Beta1Schema{
    					"set both minProperties and maxProperties to 1 to violate the previous object",
    					map[string]interface{}{
    						"properties": map[string]interface{}{
    							"restricted": map[string]interface{}{
    								"minProperties": 1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  5. src/regexp/testdata/testregex.c

    	REG_EHUNG,	"EHUNG",
    	REG_EBUS,	"EBUS",
    	REG_EFAULT,	"EFAULT",
    	REG_EFLAGS,	"EFLAGS",
    	REG_EDELIM,	"EDELIM",
    };
    
    static struct
    {
    	regmatch_t	NOMATCH;
    	int		errors;
    	int		extracted;
    	int		ignored;
    	int		lineno;
    	int		passed;
    	int		signals;
    	int		unspecified;
    	int		verify;
    	int		warnings;
    	char*		file;
    	char*		stack;
    	char*		which;
    	jmp_buf		gotcha;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  6. docs/changelogs/changelog_3x.md

    ## Version 3.12.10
    
    _2020-02-29_
    
     *  Fix: Don't crash on Android 4.1 when detecting methods that became restricted in Android 11.
        Supporting a full decade of Android releases on our 3.12.x branch is tricky!
    
    
    ## Version 3.12.9
    
    _2020-02-24_
    
     *  Fix: Don't crash on Android 11 due to use of restricted methods. This prevents a crash with the
        exception, "Expected Android API level 21+ but was 29".
    
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  7. src/encoding/xml/marshal_test.go

    			Handle:    "007",
    			Identity:  "James Bond",
    			Obfuscate: "<redacted/>",
    		},
    		ExpectXML:   `<agent handle="007"><Identity>James Bond</Identity><redacted/></agent>`,
    		MarshalOnly: true,
    	},
    	{
    		Value: &SecretAgent{
    			Handle:    "007",
    			Identity:  "James Bond",
    			Obfuscate: "<Identity>James Bond</Identity><redacted/>",
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/Futures.java

        }
        return new ImmediateFuture<>(value);
      }
    
      /**
       * Returns a successful {@code ListenableFuture<Void>}. This method is equivalent to {@code
       * immediateFuture(null)} except that it is restricted to produce futures of type {@code Void}.
       *
       * @since 29.0
       */
      @SuppressWarnings("unchecked")
      public static ListenableFuture<@Nullable Void> immediateVoidFuture() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// List of ports which should be made accessible on the pods selected for this rule.
    	// Each item in this list is combined using a logical OR.
    	// If this field is empty or missing, this rule matches all ports (traffic not restricted by port).
    	// If this field is present and contains at least one item, then this rule allows traffic
    	// only if the traffic matches at least one port in the list.
    	// +optional
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  10. cmd/iam.go

    	if !sys.Initialized() {
    		return nil, errServerNotInitialized
    	}
    
    	return sys.store.PolicyDBGet(name, groups...)
    }
    
    const sessionPolicyNameExtracted = policy.SessionPolicyName + "-extracted"
    
    // IsAllowedServiceAccount - checks if the given service account is allowed to perform
    // actions. The permission of the parent user is checked first
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top