Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 171 for Strip (0.6 sec)

  1. staging/src/k8s.io/api/testdata/README.md

    To resolve this, a `<group>.<version>.<kind>_after_roundtrip.[json|yaml|pb]` file containing the 
    expected data after roundtripping can be placed beside the serialized data file from a previous release.
    
    These `after_roundtrip` files are generated by running the failing round-trip tests with `UPDATE_COMPATIBILITY_FIXTURE_DATA=true` set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. src/path/filepath/path_windows.go

    	var lastChar byte
    	for _, e := range elem {
    		switch {
    		case b.Len() == 0:
    			// Add the first non-empty path element unchanged.
    		case os.IsPathSeparator(lastChar):
    			// If the path ends in a slash, strip any leading slashes from the next
    			// path element to avoid creating a UNC path (any path starting with "\\")
    			// from non-UNC elements.
    			//
    			// The correct behavior for Join when the first element is an incomplete UNC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. tests/integration/pilot/headers_test.go

    				"x-forwarded-client-cert",
    				"x-request-id",
    			)
    
    			allowedClientHeaders := sets.New(
    				// Envoy has no way to turn this off
    				"x-forwarded-proto",
    				// Metadata exchange: under discussion of how we can strip this, but for now there is no way
    				"x-envoy-peer-metadata",
    				"x-envoy-peer-metadata-id",
    				// Tracing decorator. We may consider disabling this if tracing is off?
    				"x-envoy-decorator-operation",
    			)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/extension/wasmplugin.go

    	// secret, and replace the env variable value with it. When ECDS config update reaches the proxy,
    	// agent will extract out the secret from env variable, use it for image pulling, and strip the
    	// env variable from VM config before forwarding it to envoy.
    	envs := pluginConfig.GetVmConfig().GetEnvironmentVariables().GetKeyValues()
    	secretName := envs[model.WasmSecretEnv]
    	if secretName != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. src/go/types/format.go

    		check.markImports(imp)
    	}
    }
    
    // stripAnnotations removes internal (type) annotations from s.
    func stripAnnotations(s string) string {
    	var buf strings.Builder
    	for _, r := range s {
    		// strip #'s and subscript digits
    		if r < '₀' || '₀'+10 <= r { // '₀' == U+2080
    			buf.WriteRune(r)
    		}
    	}
    	if buf.Len() < len(s) {
    		return buf.String()
    	}
    	return s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. platforms/software/security/src/main/java/org/gradle/security/internal/SecuritySupport.java

                        if (o instanceof PGPPublicKeyRing) {
                            // backward compatibility: old keyrings should be stripped too
                            PGPPublicKeyRing strippedKeyRing = KeyringStripper.strip((PGPPublicKeyRing) o, fingerprintCalculator);
                            existingRings.add(strippedKeyRing);
                        }
                    }
                } catch (Exception e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. pkg/scheduler/eventhandlers.go

    	strip := func(conditions []v1.NodeCondition) map[v1.NodeConditionType]v1.ConditionStatus {
    		conditionStatuses := make(map[v1.NodeConditionType]v1.ConditionStatus, len(conditions))
    		for i := range conditions {
    			conditionStatuses[conditions[i].Type] = conditions[i].Status
    		}
    		return conditionStatuses
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:04 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. src/runtime/os3_plan9.go

    		// We can't safely sigpanic because it may grow the
    		// stack. Abort in the signal handler instead.
    		flags = (flags &^ _SigPanic) | _SigThrow
    	}
    	if flags&_SigGoExit != 0 {
    		exits((*byte)(add(unsafe.Pointer(note), 9))) // Strip "go: exit " prefix.
    	}
    	if flags&_SigPanic != 0 {
    		// Copy the error string from sigtramp's stack into m->notesig so
    		// we can reliably access it from the panic routines.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. platforms/software/security/src/main/java/org/gradle/security/internal/PublicKeyDownloadService.java

                PGPPublicKeyRing keyring = (PGPPublicKeyRing) objectFactory.nextObject();
    
                PGPPublicKeyRing strippedKeyRing = KeyringStripper.strip(keyring, fingerprintCalculator);
    
                onKeyring.accept(strippedKeyRing);
                builder.keyRing(strippedKeyRing);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:49:35 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. src/text/tabwriter/tabwriter.go

    // Formatting can be controlled with these flags.
    const (
    	// Ignore html tags and treat entities (starting with '&'
    	// and ending in ';') as single characters (width = 1).
    	FilterHTML uint = 1 << iota
    
    	// Strip Escape characters bracketing escaped text segments
    	// instead of passing them through unchanged with the text.
    	StripEscape
    
    	// Force right-alignment of cell content.
    	// Default is left-alignment.
    	AlignRight
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 17.8K bytes
    - Viewed (0)
Back to top