Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 173 for Replacer (0.99 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

                    rename {
                        println("rename $it")
                        if (it.endsWith('.b')) {
                            return null
                        } else {
                            return it.replace('.a', '.renamed')
                        }
                    }
                }
            '''
    
            when:
            run 'copy'
    
            then:
            file('dest').assertHasDescendants(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  2. cmd/xl-storage-format-v2.go

    			// version of the object.
    			return x.setIdx(i, ventry)
    		case ObjectType:
    			return x.setIdx(i, ventry)
    		case DeleteType:
    			// Allowing delete marker to replaced with proper
    			// object data type as well, this is not S3 complaint
    			// behavior but kept here for future flexibility.
    			return x.setIdx(i, ventry)
    		}
    	}
    
    	// We did not find it, add it.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    					"after":  withMaxLength(primitiveType("string", ""), &afterLen),
    				})
    				objType = withRule(objType, "self.str.replace(self.before, self.after) == 'does not matter'")
    				return &objType
    			},
    			expectedCalcCost: 629154, // cost is based on the result size of the replace() call
    			setMaxElements:   4,
    			expectedSetCost:  12,
    		},
    		{
    			name: "extended library split",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

            }
    
            // We need to manually replace the key in the XML, as 'createMetadataFile' will already fail if we use a non-fingerprint ID
            def longId = validPublicKeyHexString.substring(validPublicKeyHexString.length() - 16)
            file("gradle/verification-metadata.xml").replace(validPublicKeyHexString, longId)
    
            given:
            terseConsoleOutput(terse)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    		ReservedForPod(pod.Name, types.UID(pod.UID)).
    		Obj()
    }
    
    // claimWithCRD replaces the in-tree group with "example.com".
    func claimWithCRD(claim *resourcev1alpha2.ResourceClaim) *resourcev1alpha2.ResourceClaim {
    	claim = claim.DeepCopy()
    	claim.Spec.ParametersRef.APIGroup = "example.com"
    	return claim
    }
    
    // classWithCRD replaces the in-tree group with "example.com".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  6. src/cmd/cgo/out.go

    		p.writeGccgoExports(fgo2, fm, fgcc, fgcch)
    	} else {
    		p.writeExports(fgo2, fm, fgcc, fgcch)
    	}
    
    	if callsMalloc && !*gccgo {
    		fmt.Fprint(fgo2, strings.Replace(cMallocDefGo, "PREFIX", cPrefix, -1))
    		fmt.Fprint(fgcc, strings.Replace(strings.Replace(cMallocDefC, "PREFIX", cPrefix, -1), "PACKED", p.packedAttribute(), -1))
    	}
    
    	if err := fgcc.Close(); err != nil {
    		fatalf("%s", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. src/cmd/cgo/gcc.go

    		// approach is to assume it has a pointer.
    		return true
    	default:
    		error_(t.Pos(), "could not understand type %s", gofmt(t))
    		return true
    	}
    }
    
    // mangle replaces references to C names in arg with the mangled names,
    // rewriting calls when it finds them.
    // It removes the corresponding references in f.Ref and f.Calls, so that we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    				}
    				route.Doc(doc)
    			}
    			addParams(route, action.Params)
    			routes = append(routes, route)
    		case "PUT": // Update a resource.
    			doc := "replace the specified " + kind
    			if isSubresource {
    				doc = "replace " + subresource + " of the specified " + kind
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbFile.java

                    req.setFileInformation(new FileRenameInformation2(dest.getUncPath().substring(1), replace));
                    withOpen(sh, Smb2CreateRequest.FILE_OPEN, FILE_WRITE_ATTRIBUTES | DELETE, FILE_SHARE_READ | FILE_SHARE_WRITE, req);
                }
                else {
                    if ( replace ) {
                        // TRANS2_SET_FILE_INFORMATION does not seem to support the SMB1 RENAME_INFO
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  10. cmd/iam-store.go

    	//
    	// An in-memory cache must be replaced only if we know for sure that the
    	// values loaded from disk are not stale. They might be stale if the
    	// cached.updatedAt is more recent than the refresh cycle began.
    	if cache.updatedAt.Before(loadedAt) {
    		// No one has updated anything since the config was loaded,
    		// so we just replace whatever is on the disk into memory.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
Back to top