Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 507 for Pids (0.04 sec)

  1. pilot/pkg/security/authz/builder/testdata/tcp/deny-both-http-tcp-out.yaml

                - any: true
            principals:
            - andIds:
                ids:
                - any: true
          ns[foo]-policy[httpbin-deny]-rule[3]:
            permissions:
            - andRules:
                rules:
                - any: true
            principals:
            - andIds:
                ids:
                - orIds:
                    ids:
                    - authenticated:
                        principalName:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 16:35:46 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  2. src/syscall/syscall_aix.go

    	n, err = getgroups(n, &a[0])
    	if err != nil {
    		return nil, err
    	}
    	gids = make([]int, n)
    	for i, v := range a[0:n] {
    		gids[i] = int(v)
    	}
    	return
    }
    
    func Setgroups(gids []int) (err error) {
    	if len(gids) == 0 {
    		return setgroups(0, nil)
    	}
    
    	a := make([]_Gid_t, len(gids))
    	for i, v := range gids {
    		a[i] = _Gid_t(v)
    	}
    	return setgroups(len(a), &a[0])
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/cpumanager/topology/topology.go

    	for _, id := range ids {
    		for _, info := range d {
    			if info.NUMANodeID == id {
    				coreIDs = append(coreIDs, info.CoreID)
    			}
    		}
    	}
    	return cpuset.New(coreIDs...)
    }
    
    // CoresInSockets returns all of the core IDs associated with the given socket
    // IDs in this CPUDetails.
    func (d CPUDetails) CoresInSockets(ids ...int) cpuset.CPUSet {
    	var coreIDs []int
    	for _, id := range ids {
    		for _, info := range d {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/builder/testdata/http/extended-single-policy-out.yaml

                - orIds:
                    ids:
                    - remoteIp:
                        addressPrefix: 10.99.10.8
                        prefixLen: 32
                    - remoteIp:
                        addressPrefix: 10.80.64.0
                        prefixLen: 18
            - andIds:
                ids:
                - orIds:
                    ids:
                    - authenticated:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraph.java

            } else {
                entry = vertex;
            }
    
            MetadataTreeNode[] kids = node.getChildren();
            if (kids == null || kids.length < 1) {
                return;
            }
    
            for (int i = 0; i < kids.length; i++) {
                MetadataTreeNode n = kids[i];
                processTreeNodes(vertex, n, depth + 1, i);
            }
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Oct 05 18:41:13 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  6. pilot/pkg/security/authz/builder/testdata/http/extended-allow-full-rule-out.yaml

                          - stringMatch:
                              safeRegex:
                                regex: .+
            principals:
            - andIds:
                ids:
                - orIds:
                    ids:
                    - authenticated:
                        principalName:
                          exact: spiffe://principal
                    - authenticated:
                        principalName:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 18:02:42 UTC 2024
    - 39K bytes
    - Viewed (0)
  7. pilot/pkg/security/authz/builder/testdata/http/multiple-policies-out.yaml

            principals:
            - andIds:
                ids:
                - any: true
          ns[foo]-policy[httpbin-4]-rule[0]:
            permissions:
            - andRules:
                rules:
                - orRules:
                    rules:
                    - destinationPort: 80
                    - destinationPort: 90
            principals:
            - andIds:
                ids:
                - any: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 16:35:46 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_saver_op_test.cc

      std::vector<std::string> ids{"1"};
      std::vector<int32_t> calibration_methods{
          CalibrationOptions::CALIBRATION_METHOD_AVERAGE_MIN_MAX};
    
      std::vector<NodeDefBuilder::NodeOut> inputs;
      inputs.emplace_back("min", 0, DT_FLOAT);
      inputs.emplace_back("max", 0, DT_FLOAT);
    
      TF_CHECK_OK(NodeDefBuilder("op", "CalibrationStatisticsSaver")
                      .Input(inputs)
                      .Attr("ids", ids)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 01:31:23 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. pilot/pkg/security/authz/builder/testdata/http/single-policy-out.yaml

                - orIds:
                    ids:
                    - remoteIp:
                        addressPrefix: 10.99.10.8
                        prefixLen: 32
                    - remoteIp:
                        addressPrefix: 10.80.64.0
                        prefixLen: 18
            - andIds:
                ids:
                - orIds:
                    ids:
                    - authenticated:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 16:35:46 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  10. src/crypto/x509/root_windows.go

    	if len(keyUsages) == 0 {
    		keyUsages = []ExtKeyUsage{ExtKeyUsageServerAuth}
    	}
    	oids := make([]*byte, 0, len(keyUsages))
    	for _, eku := range keyUsages {
    		if eku == ExtKeyUsageAny {
    			oids = nil
    			break
    		}
    		if oid, ok := windowsExtKeyUsageOIDs[eku]; ok {
    			oids = append(oids, &oid[0])
    		}
    	}
    	if oids != nil {
    		para.RequestedUsage.Type = syscall.USAGE_MATCH_TYPE_OR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:41:40 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top