Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 62 for gids (0.06 sec)

  1. src/syscall/exec_linux.go

    		if err := writeSetgroups(pid, sys.GidMappingsEnableSetgroups); err != nil && err != ENOENT {
    			return err
    		}
    		gidf := "/proc/" + itoa.Itoa(pid) + "/gid_map"
    		if err := writeIDMappings(gidf, sys.GidMappings); err != nil {
    			return err
    		}
    	}
    
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. istioctl/pkg/tag/generate.go

    	// since they are functioned differently with different name.
    	// The filtered common labels are then added to the incoming generated
    	// webhooks, which aids in managing these webhooks via the istioctl/operator.
    	filteredLabels := make(map[string]string)
    	for k, v := range wh.Labels {
    		if k != "app" {
    			filteredLabels[k] = v
    		}
    	}
    
    	return &tagWebhookConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 17:43:49 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/Kerb5Context.java

            try {
                krbNameOid = new Oid("1.2.840.113554.1.2.2.1");
                krbMechOid = new Oid("1.2.840.113554.1.2.2");
            }
            catch ( Exception e ) {
                log.error("Failed to initialize kerberos OIDs", e);
            }
    
            JGSS_KRB5_NAME_OID = krbNameOid;
            JGSS_KRB5_MECH_OID = krbMechOid;
        }
    
        private final GSSContext gssContext;
        private final GSSName clientName;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Aug 02 08:22:42 UTC 2018
    - 13.9K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__authentication.k8s.io__v1_openapi.json

              },
              "uid": {
                "description": "A unique value that identifies this user across time. If this user is deleted and another user by the same name is added, they will have different UIDs.",
                "type": "string"
              },
              "username": {
                "description": "The name that uniquely identifies this user among all active users.",
                "type": "string"
              }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  5. cni/pkg/repair/repaircontroller.go

    	// once the pod restarts (in CrashLoopBackoff), which can take some time.
    	// We don't want to constantly try to apply the iptables rules, which is unneeded and will fail.
    	// Instead, we track which UIDs we repaired and skip them if already repaired.
    	//
    	// An alternative would be to write something to the Pod (status, annotation, etc).
    	// However, this requires elevated privileges we want to avoid
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 10 00:31:55 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. src/image/gif/writer.go

    	e := encoder{g: *g}
    	// The GIF.Disposal, GIF.Config and GIF.BackgroundIndex fields were added
    	// in Go 1.5. Valid Go 1.4 code, such as when the Disposal field is omitted
    	// in a GIF struct literal, should still produce valid GIFs.
    	if e.g.Disposal != nil && len(e.g.Image) != len(e.g.Disposal) {
    		return errors.New("gif: mismatched image and disposal lengths")
    	}
    	if e.g.Config == (image.Config{}) {
    		p := g.Image[0].Bounds().Max
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:38:09 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/test_kit.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[test_kit]]
    = Testing Build Logic with TestKit
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    ----
    $ gradle --stop
    ----
    
    This terminates all Daemon processes started with the same version of Gradle used to execute the command.
    
    You can also kill Daemons manually with your operating system.
    To find the PIDs for all Daemons regardless of Gradle version, see <<gradle_daemon.adoc#find_all_daemons,Find Daemons>>.
    
    [[sec:daemon_jvm_criteria]]
    == Configuring the JVM to be used
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. pilot/pkg/security/authn/policy_applier.go

    	// If there are more than one provider, filter should OR of
    	// {P1, P2 .., AND of {OR{P1, allow_missing}, OR{P2, allow_missing} ...}}
    	// where the innerAnd enforce a token, if provided, must be valid, and the
    	// outer OR aids the case where providers share the same location (as
    	// it will always fail with the innerAND).
    	outterOrList = append(outterOrList, &envoy_jwt.JwtRequirement{
    		RequiresType: &envoy_jwt.JwtRequirement_RequiresAll{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. src/image/gif/writer_test.go

    				i, m.Bounds(), width, height)
    		}
    		g0.Image[i] = m
    	}
    	// The GIF.Disposal, GIF.Config and GIF.BackgroundIndex fields were added
    	// in Go 1.5. Valid Go 1.4 or earlier code should still produce valid GIFs.
    	//
    	// On the following line, color.Model is an interface type, and
    	// color.Palette is a concrete (slice) type.
    	globalColorModel, backgroundIndex := color.Model(color.Palette(nil)), uint8(0)
    	if useGlobalColorModel {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top