Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for NotPaths (0.11 sec)

  1. pilot/pkg/security/authz/model/model.go

    		merged := basePermission.copy()
    		if o := to.Operation; o != nil {
    			merged.insertFront(destPortGenerator{}, attrDestPort, o.Ports, o.NotPorts)
    			merged.insertFront(pathGenerator{}, pathMatcher, o.Paths, o.NotPaths)
    			merged.insertFront(methodGenerator{}, methodHeader, o.Methods, o.NotMethods)
    			merged.insertFront(hostGenerator{}, hostHeader, o.Hosts, o.NotHosts)
    		}
    		m.permissions = append(m.permissions, merged)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/ambient/authorization.go

    	toMatches := []*security.Match{}
    	for _, to := range rule.To {
    		op := to.Operation
    		if action == security.Action_ALLOW && anyNonEmpty(op.Hosts, op.NotHosts, op.Methods, op.NotMethods, op.Paths, op.NotPaths) {
    			// L7 policies never match for ALLOW
    			// For DENY they will always match, so it is more restrictive
    			return nil
    		}
    		match := &security.Match{
    			DestinationPorts:    stringToPort(op.Ports),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 16:23:36 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. src/cmd/doc/main.go

    		}
    	}
    	// Guess it's a symbol in the current directory.
    	return importDir(wd), "", arg, false
    }
    
    // dotPaths lists all the dotted paths legal on Unix-like and
    // Windows-like file systems. We check them all, as the chance
    // of error is minute and even on Windows people will use ./
    // sometimes.
    var dotPaths = []string{
    	`./`,
    	`../`,
    	`.\`,
    	`..\`,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top