- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 557 for ssec (0.02 sec)
-
istioctl/pkg/workload/workload.go
return err } // fill empty structs if wg.Spec.Metadata == nil { wg.Spec.Metadata = &networkingv1alpha3.WorkloadGroup_ObjectMeta{} } if wg.Spec.Template == nil { wg.Spec.Template = &networkingv1alpha3.WorkloadEntry{} } // default service account for an empty field is "default" if wg.Spec.Template.ServiceAccount == "" { wg.Spec.Template.ServiceAccount = "default" } return nil }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 15 16:31:46 UTC 2024 - 25.3K bytes - Viewed (0) -
internal/config/lambda/event/targetidset.go
func (set TargetIDSet) Union(sset TargetIDSet) TargetIDSet { nset := set.Clone() for k := range sset { nset.add(k) } return nset } // Difference - returns difference with given set as new set. func (set TargetIDSet) Difference(sset TargetIDSet) TargetIDSet { nset := NewTargetIDSet() for k := range set { if _, ok := sset[k]; !ok { nset.add(k) } } return nset
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jan 18 07:03:17 UTC 2024 - 1.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/reflect/SubtypeTester.java
TestSubtype spec = method.getAnnotation(TestSubtype.class); assertWithMessage("%s is subtype of %s", paramType, returnType) .that(TypeToken.of(paramType).isSubtypeOf(returnType)) .isTrue(); assertWithMessage("%s is supertype of %s", returnType, paramType) .that(TypeToken.of(returnType).isSupertypeOf(paramType)) .isTrue(); if (!spec.suppressGetSubtype()) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Apr 19 19:24:36 UTC 2023 - 6.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Handler.java
protected void parseURL( URL u, String spec, int start, int limit ) { String host = u.getHost(); String path, ref; int port; if( spec.equals( "smb1://" )) { spec = "smb1:////"; limit += 2; } else if( spec.startsWith( "smb1://" ) == false && host != null && host.length() == 0 ) { spec = "//" + spec; limit += 2; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.2K bytes - Viewed (0) -
istioctl/pkg/xds/google.go
if err != nil { return nil, err } spec, ok := u.Object["spec"].(map[string]any) if !ok { return nil, errors.New(`field "spec" is not a map`) } var mem hubMembership mem.WorkloadIdentityPool, ok = spec["workload_identity_pool"].(string) if !ok { return nil, errors.New(`field "spec.workload_identity_pool" is not a string`) } return &mem, nil }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Nov 14 20:23:34 UTC 2022 - 3.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/Handler.java
protected void parseURL ( URL u, String spec, int start, int limit ) { String host = u.getHost(); String path, ref; int port; if ( spec.equals("smb://") ) { spec = "smb:////"; limit += 2; } else if ( spec.startsWith("smb://") == false && host != null && host.length() == 0 ) { spec = "//" + spec; limit += 2; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jun 06 09:14:24 UTC 2020 - 2.9K bytes - Viewed (0) -
istioctl/pkg/validate/validate.go
var errs error if un.GetNamespace() == handleNamespace(istioNamespace) { return nil } spec := un.Object["spec"].(map[string]any) if _, ok := spec["ports"]; ok { ports := spec["ports"].([]any) for _, port := range ports { p := port.(map[string]any) if p["protocol"] != nil && strings.EqualFold(p["protocol"].(string), serviceProtocolUDP) {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 15 22:27:47 UTC 2024 - 14.3K bytes - Viewed (0) -
fastapi/security/oauth2.py
grant_type: the OAuth2 spec says it is required and MUST be the fixed string "password". This dependency is strict about it. If you want to be permissive, use instead the OAuth2PasswordRequestForm dependency class. username: username string. The OAuth2 spec requires the exact field name "username". password: password string. The OAuth2 spec requires the exact field name "password".
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Wed Oct 23 18:30:18 UTC 2024 - 21.1K bytes - Viewed (0) -
common-protos/k8s.io/api/networking/v1beta1/generated.proto
// spec is the desired state of the Ingress. // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status // +optional optional IngressSpec spec = 2; // status is the current state of the Ingress. // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status // +optional
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 14.9K bytes - Viewed (0) -
.teamcity/src/main/kotlin/projects/PerformanceTestProject.kt
import model.PerformanceTestCoverage import model.PerformanceTestProjectSpec import model.Stage abstract class PerformanceTestProject(model: CIBuildModel, val spec: PerformanceTestProjectSpec, val performanceTests: List<PerformanceTest>) : Project({ this.id(spec.asConfigurationId(model)) this.name = spec.asName() }) { init { performanceTests.forEach(this::buildType) } }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Dec 05 00:08:14 UTC 2023 - 1.1K bytes - Viewed (0)