Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 197 for isAllowed (0.3 sec)

  1. src/cmd/go/internal/modfetch/coderepo.go

    	if found1 {
    		// Explicit go.mod with matching major version ok.
    		return rev, r.codeDir, gomod1, nil
    	}
    	if err1 == nil {
    		// Explicit go.mod with non-matching major version disallowed.
    		suffix := ""
    		if file2 != "" {
    			suffix = fmt.Sprintf(" (and ...%s/go.mod does not exist)", r.pathMajor)
    		}
    		if mpath1 == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  2. pkg/registry/batch/job/strategy_test.go

    					Parallelism:    ptr.To[int32](1),
    				},
    			},
    			update: func(job *batch.Job) {
    				job.Spec.Parallelism = ptr.To[int32](2)
    			},
    		},
    		"update completions disallowed": {
    			job: &batch.Job{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:            "myjob",
    					Namespace:       metav1.NamespaceDefault,
    					ResourceVersion: "0",
    				},
    				Spec: batch.JobSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/extensions/v1beta1/types.go

    }
    
    // IngressRuleValue represents a rule to apply against incoming requests. If the
    // rule is satisfied, the request is routed to the specified backend. Currently
    // mixing different types of rules in a single Ingress is disallowed, so exactly
    // one of the following must be set.
    type IngressRuleValue struct {
    	//TODO:
    	// 1. Consider renaming this resource and the associated rules so they
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    Eagerly realizing some tasks may cause a cascade of other tasks to be realized.
    Using `TaskProvider` helps create an indirection that protects against transitive realization.
    
    8. **Some APIs may be disallowed if you try to access them from the new API's configuration blocks.**  +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/query.go

    // a specific revision (for example, "master"; see IsRevisionQuery), and the
    // revision is disallowed by allowed, Query returns the error. If the query
    // does not refer to a specific revision (for example, "latest"), Query
    // acts as if versions disallowed by allowed do not exist.
    //
    // If path is the path of the main module and the query is "latest",
    // Query returns Target.Version as the version.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  6. pkg/volume/util/subpath/subpath_linux.go

    		currentPath = filepath.Join(currentPath, dir)
    	}
    	return pathname, []string{}, nil
    }
    
    // This implementation is shared between Linux and NsEnterMounter
    // Open path and return its fd.
    // Symlinks are disallowed (pathname must already resolve symlinks),
    // and the path must be within the base directory.
    func doSafeOpen(pathname string, base string) (int, error) {
    	pathname = filepath.Clean(pathname)
    	base = filepath.Clean(base)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 12 14:09:11 UTC 2022
    - 21.4K bytes
    - Viewed (0)
  7. plugin/pkg/admission/noderestriction/admission.go

    		}
    
    		// Don't allow a node to update its own taints. This would allow a node to remove or modify its
    		// taints in a way that would let it steer disallowed workloads to itself.
    		if !apiequality.Semantic.DeepEqual(node.Spec.Taints, oldNode.Spec.Taints) {
    			return admission.NewForbidden(a, fmt.Errorf("node %q is not allowed to modify taints", nodeName))
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. src/net/textproto/reader.go

    	// so that the byte c can be tested with a shift and an and.
    	// If c >= 128, then 1<<c and 1<<(c-64) will both be zero.
    	// Since this is the obs-text range, we invert the mask to
    	// create a bitmap with 1s for disallowed bytes.
    	const mask = 0 |
    		(1<<(0x7f-0x21)-1)<<0x21 | // VCHAR: %x21-7E
    		1<<0x20 | // SP: %x20
    		1<<0x09 // HTAB: %x09
    	return ((uint64(1)<<c)&^(mask&(1<<64-1)) |
    		(uint64(1)<<(c-64))&^(mask>>64)) == 0
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  9. src/net/http/cookie_test.go

    		"cookie-16=partitioned; Path=/; Secure; SameSite=None; Partitioned",
    	},
    	// The "special" cookies have values containing commas or spaces which
    	// are disallowed by RFC 6265 but are common in the wild.
    	{
    		&Cookie{Name: "special-1", Value: "a z"},
    		`special-1="a z"`,
    	},
    	{
    		&Cookie{Name: "special-2", Value: " z"},
    		`special-2=" z"`,
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/coderepo_test.go

    		rev:  "v1.0.0",
    		err:  `resolves to version v0.1.1-0.20220202191944-09c4d8f6938c (v1.0.0 is not a tag)`,
    	},
    	{
    		// Git branch with a semver name, matching go.mod file, and disallowed +incompatible version.
    		// The version/tag mismatch takes precedence over the +incompatible mismatched.
    		vcs:  "git",
    		path: "vcs-test.golang.org/git/semver-branch.git",
    		rev:  "v2.0.0+incompatible",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 20:10:14 UTC 2023
    - 29.4K bytes
    - Viewed (0)
Back to top