Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 445 for restriction (0.24 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_maven.adoc

    Maven restricts `groupId` and `artifactId` to a limited character set (`[A-Za-z0-9_\\-.]+`) and Gradle enforces this restriction. For `version` (as well as the artifact `extension` and `classifier` properties), Gradle will handle any valid Unicode character.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  2. src/cmd/link/internal/amd64/asm.go

    //
    // Permission is hereby granted, free of charge, to any person obtaining a copy
    // of this software and associated documentation files (the "Software"), to deal
    // in the Software without restriction, including without limitation the rights
    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 21K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    func KeyctlRestrictKeyring(ringid int, keyType string, restriction string) error {
    	if keyType == "" {
    		return keyctlRestrictKeyring(KEYCTL_RESTRICT_KEYRING, ringid)
    	}
    	return keyctlRestrictKeyringByType(KEYCTL_RESTRICT_KEYRING, ringid, keyType, restriction)
    }
    
    //sys	keyctlRestrictKeyringByType(cmd int, arg2 int, keyType string, restriction string) (err error) = SYS_KEYCTL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  4. src/image/jpeg/scan.go

    			if scan[i].compIndex == scan[j].compIndex {
    				return FormatError("repeated component selector")
    			}
    		}
    		totalHV += d.comp[compIndex].h * d.comp[compIndex].v
    
    		// The baseline t <= 1 restriction is specified in table B.3.
    		scan[i].td = d.tmp[2+2*i] >> 4
    		if t := scan[i].td; t > maxTh || (d.baseline && t > 1) {
    			return FormatError("bad Td value")
    		}
    		scan[i].ta = d.tmp[2+2*i] & 0x0f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. src/cmd/internal/objabi/reloctype.go

    //
    // Permission is hereby granted, free of charge, to any person obtaining a copy
    // of this software and associated documentation files (the "Software"), to deal
    // in the Software without restriction, including without limitation the rights
    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ppc64/asm.go

    	// Verify resulting address fits within a 31 bit (2GB) address space.
    	// This is a restriction arising  from the usage of lis (HA) + d-form
    	// (LO) instruction sequences used to implement absolute relocations
    	// on PPC64 prior to ISA 3.1 (P10). For consistency, maintain this
    	// restriction for ISA 3.1 unless it becomes problematic.
    	t := ldr.SymAddr(rs) + r.Add()
    	if t < 0 || t >= 1<<31 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  7. src/syscall/exec_linux_test.go

    }
    
    func TestAmbientCapsUserns(t *testing.T) {
    	b, err := os.ReadFile("/proc/sys/kernel/apparmor_restrict_unprivileged_userns")
    	if err == nil && strings.TrimSpace(string(b)) == "1" {
    		t.Skip("AppArmor restriction for unprivileged user namespaces is enabled")
    	}
    	testAmbientCaps(t, true)
    }
    
    func testAmbientCaps(t *testing.T, userns bool) {
    	if os.Getenv("GO_WANT_HELPER_PROCESS") == "1" {
    		caps, err := getCaps()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loadmacho/ldmacho.go

    	Portions Copyright © 2010 The Go Authors.
    
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    copies of the Software, and to permit persons to whom the Software is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 18:45:57 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/storage/v1/types_swagger_doc_generated.go

    }
    
    func (StorageClass) SwaggerDoc() map[string]string {
    	return map_StorageClass
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 07:07:45 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  10. plugin/pkg/admission/noderestriction/admission.go

    	if len(modifiedLabels) == 0 {
    		return nil
    	}
    
    	forbiddenLabels := sets.NewString()
    	for label := range modifiedLabels {
    		namespace := getLabelNamespace(label)
    		// forbid kubelets from setting node-restriction labels
    		if namespace == v1.LabelNamespaceNodeRestriction || strings.HasSuffix(namespace, "."+v1.LabelNamespaceNodeRestriction) {
    			forbiddenLabels.Insert(label)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 23.6K bytes
    - Viewed (0)
Back to top