Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 94 for notsan (0.12 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/facts/facts.go

    // those objects of P's dependencies that are reachable from the API of
    // package P; the downstream analysis of Q need only load one fact set
    // per direct import of Q.
    //
    // The notion of "exportedness" that matters here is that of the
    // compiler. According to the language spec, a method pkg.T.f is
    // unexported simply because its name starts with lowercase. But the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/security/oauth2-jwt.md

    <img src="/img/tutorial/security/image10.png">
    
    !!! note
        Notice the header `Authorization`, with a value that starts with `Bearer `.
    
    ## Advanced usage with `scopes`
    
    OAuth2 has the notion of "scopes".
    
    You can use them to add a specific set of permissions to a JWT token.
    
    Then you can give this token to a user directly or a third party, to interact with your API with a set of restrictions.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. pkg/bootstrap/instance_test.go

    	}
    	return IstioMetaJSONPrefix + name + "=" + string(jsonStr)
    }
    
    func TestNodeMetadataEncodeEnvWithIstioMetaPrefix(t *testing.T) {
    	originalKey := "foo"
    	notIstioMetaKey := "NOT_AN_" + IstioMetaPrefix + originalKey
    	anIstioMetaKey := IstioMetaPrefix + originalKey
    	envs := []string{
    		notIstioMetaKey + "=bar",
    		anIstioMetaKey + "=baz",
    	}
    	node, err := GetNodeMetaData(MetadataOptions{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/admissionregistration/v1/generated.proto

      // associated with "runlevel" of "0" or "1";  you will set the selector as
      // follows:
      // "namespaceSelector": {
      //   "matchExpressions": [
      //     {
      //       "key": "runlevel",
      //       "operator": "NotIn",
      //       "values": [
      //         "0",
      //         "1"
      //       ]
      //     }
      //   ]
      // }
      //
      // If instead you want to only run the webhook on any objects whose
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  5. src/net/http/cookiejar/jar.go

    		// allows such cookies but treat them as host-only cookies.
    		// So do we as it just doesn't make sense to label them as
    		// domain cookies when there is no domain; the whole notion of
    		// domain cookies requires a domain name to be well defined.
    		return host, true, nil
    	}
    
    	// From here on: If the cookie is valid, it is a domain cookie (with
    	// the one exception of a public suffix below).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_customization.adoc

    = Customizing publishing
    
    [[sec:adding-variants-to-existing-components]]
    == Modifying and adding variants to existing components for publishing
    
    Gradle's publication model is based on the notion of _components_, which are defined by plugins.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  7. src/crypto/x509/name_constraints_test.go

    			},
    		},
    		intermediates: [][]constraintsSpec{
    			{
    				{
    					ok: []string{"dns:.bar.example.com"},
    				},
    			},
    		},
    		leaf: leafSpec{
    			sans: []string{"dns:foo.notbar.example.com"},
    		},
    		expectedError: "\"foo.notbar.example.com\" is not permitted",
    	},
    
    	// #14: roots can exclude subtrees and that doesn't affect other names.
    	{
    		roots: []constraintsSpec{
    			{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  8. src/internal/trace/order.go

    	if parentID == BackgroundTask {
    		// Note: a value of 0 here actually means no parent, *not* the
    		// background task. Automatic background task attachment only
    		// applies to regions.
    		parentID = NoTask
    		ev.args[1] = uint64(NoTask)
    	}
    
    	// Validate the name and record it. We'll need to pass it through to
    	// EvUserTaskEnd.
    	nameID := stringID(ev.args[2])
    	name, ok := evt.strings.get(nameID)
    	if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // associated with "runlevel" of "0" or "1";  you will set the selector as
      // follows:
      // "namespaceSelector": {
      //   "matchExpressions": [
      //     {
      //       "key": "runlevel",
      //       "operator": "NotIn",
      //       "values": [
      //         "0",
      //         "1"
      //       ]
      //     }
      //   ]
      // }
      //
      // If instead you want to only run the policy on any objects whose
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  10. src/internal/trace/summary.go

    			task.End = ev
    		}
    		// Initialize the parent, if one exists and it hasn't been done yet.
    		// We need to avoid doing it twice, otherwise we could appear twice
    		// in the parent's Children list.
    		if t.Parent != NoTask && task.Parent == nil {
    			parent := s.getOrAddTask(t.Parent)
    			task.Parent = parent
    			parent.Children = append(parent.Children, task)
    		}
    	case EventLog:
    		log := ev.Log()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top