Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 164 for Replacer (0.64 sec)

  1. src/crypto/tls/conn.go

    	// distinguish MAC failures from padding failures could mount an attack
    	// similar to POODLE in SSL 3.0: given a good ciphertext that uses a
    	// full block's worth of padding, replace the final block with another
    	// block. If the MAC check passed but the padding check failed, the
    	// last byte of that block decrypted to the block size.
    	//
    	// See also macAndPaddingGood logic below.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    				Qualifiers: q.Qualifiers,
    			}
    		}
    	case *PackExpansion:
    		// Expand the pack and replace it with a list of
    		// expressions.
    		if a.Pack != nil {
    			exprs := make([]AST, len(a.Pack.Args))
    			for i, arg := range a.Pack.Args {
    				copy := func(sub AST) AST {
    					// Replace the ArgumentPack
    					// with a specific argument.
    					if sub == a.Pack {
    						return arg
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                message = escapeJsonKeyValue("error_code:", errorCode);
                if (logger.isDebugEnabled()) {
                    logger.debug("[{}] {}", errorCode, stacktraceString.get().replace("\n", "\\n"));
                } else {
                    logger.warn("[{}] {}", errorCode, t.getMessage());
                }
            }
            final HttpServletResponse response = LaResponseUtil.getResponse();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  4. pkg/controller/replicaset/replica_set_test.go

    // depends on both functions (such as re-queueing on sync error).
    func processSync(ctx context.Context, rsc *ReplicaSetController, key string) error {
    	// Save old syncHandler and replace with one that captures the error.
    	oldSyncHandler := rsc.syncHandler
    	defer func() {
    		rsc.syncHandler = oldSyncHandler
    	}()
    	var syncErr error
    	rsc.syncHandler = func(ctx context.Context, key string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/sidecar_simulation_test.go

    				})
    			}
    		}
    	}
    	switch variant {
    	case "httproute":
    		return tmpl.MustEvaluate(`apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: "{{.Namespace}}{{.Match | replace "*" "wild"}}{{.Dest}}"
      namespace: {{.Namespace}}
      creationTimestamp: "{{.Time}}"
    spec:
      parentRefs:
    {{- range $val := .GwMatches }}
      - group: ""
        kind: Service
        name: "{{$val.Name}}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. src/reflect/type.go

    	if ut == nil {
    		return Method{}, false
    	}
    
    	methods := ut.ExportedMethods()
    
    	// We are looking for the first index i where the string becomes >= s.
    	// This is a copy of sort.Search, with f(h) replaced by (t.nameOff(methods[h].name).name() >= name).
    	i, j := 0, len(methods)
    	for i < j {
    		h := int(uint(i+j) >> 1) // avoid overflow when computing h
    		// i ≤ h < j
    		if !(t.nameOff(methods[h].Name).Name() >= name) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

                    }
                    module('nebula:java:2.0') {
                        byConstraint("belongs to platform aligned-group:nebula:2.0")
                        selectedByRule("proto:java replaced with nebula:java")
                        byConflictResolution("between versions 2.0 and 1.1")
                    }
                    module('org:b:1.0') {
                        module('org:c:1.0') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

                return group;
            } else if (this == rootProject) {
                return "";
            }
            group = rootProject.getName() + (getParent() == rootProject ? "" : "." + getParent().getPath().substring(1).replace(':', '.'));
            return group;
        }
    
        @Override
        public void setGroup(Object group) {
            this.group = group;
        }
    
        @Override
        public Object getVersion() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/dwarf.go

    		dwhbs := d.mkinternaltype(ctxt, dwarf.DW_ABRV_STRUCTTYPE, "bucket", keyname, valname, func(dwhb *dwarf.DWDie) {
    			// Copy over all fields except the field "data" from the generic
    			// bucket. "data" will be replaced with keys/values below.
    			d.copychildrenexcept(ctxt, dwhb, bucket, findchild(bucket, "data"))
    
    			fld := d.newdie(dwhb, dwarf.DW_ABRV_STRUCTFIELD, "keys")
    			d.newrefattr(fld, dwarf.DW_AT_type, dwhks)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  10. cmd/erasure-server-pool.go

    		result.HealthyRead = result.HealthyRead && drivesHealing == 0
    		result.HealingDrives = drivesHealing
    	}
    
    	return result
    }
    
    // PutObjectMetadata - replace or add tags to an existing object
    func (z *erasureServerPools) PutObjectMetadata(ctx context.Context, bucket, object string, opts ObjectOptions) (ObjectInfo, error) {
    	object = encodeDirObject(object)
    	if z.SinglePool() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
Back to top