Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for replaceable (0.18 sec)

  1. guava/src/com/google/common/collect/Maps.java

          checkArgument(apply(key, value));
          return unfiltered().forcePut(key, value);
        }
    
        @Override
        public void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) {
          unfiltered()
              .replaceAll(
                  (key, value) ->
                      predicate.apply(Maps.<K, V>immutableEntry(key, value))
                          ? function.apply(key, value)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  2. cmd/admin-handlers.go

    			return cmdLine
    		}
    
    		if !globalIsDistErasure {
    			// FS mode - single server - hard code to `server1`
    			anonCmdLine := strings.ReplaceAll(cmdLine, globalLocalNodeName, "server1")
    			if len(globalMinioConsoleHost) > 0 {
    				anonCmdLine = strings.ReplaceAll(anonCmdLine, globalMinioConsoleHost, "server1")
    			}
    			return anonCmdLine
    		}
    
    		// Server start command regex groups:
    		// 1 - minio server
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            def temporaryOutputDirPath = gradleUserHomeOutputDir(from, to, stream).toPath()
            def immutableOutputDirPath = Streams.stream(temporaryOutputDirPath)
                .map(Path::toString)
                .map(name -> name.replaceAll(/(\w{32})-[\w-]+/, "\$1"))
                .reduce(temporaryOutputDirPath.root, Path::resolve, Path::resolve)
                .toString()
            return new TestFile(immutableOutputDirPath.toString())
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  4. src/net/http/server.go

    		if strings.Contains(r.URL.RawQuery, ";") {
    			r2 := new(Request)
    			*r2 = *r
    			r2.URL = new(url.URL)
    			*r2.URL = *r.URL
    			r2.URL.RawQuery = strings.ReplaceAll(r.URL.RawQuery, ";", "&")
    			h.ServeHTTP(w, r2)
    		} else {
    			h.ServeHTTP(w, r)
    		}
    	})
    }
    
    // ListenAndServe listens on the TCP network address srv.Addr and then
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    		lines[i] = line[len(prefix):]
    	}
    
    	joined := string(bytes.Join(lines, []byte{'\n'}))
    
    	// Convert rest of tabs to spaces since yaml doesnt like yabs
    	// (assuming 2 space alignment)
    	return strings.ReplaceAll(joined, "\t", "  ")
    }
    
    // Creates a *spec.Schema Schema by decoding the given YAML. Panics on error
    func mustSchema(source string) *schema.Structural {
    	source = FixTabsOrDie(source)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    // to their VCS information.
    var vcsStatusCache par.ErrCache[string, vcs.Status]
    
    func appendBuildSetting(info *debug.BuildInfo, key, value string) {
    	value = strings.ReplaceAll(value, "\n", " ") // make value safe
    	info.Settings = append(info.Settings, debug.BuildSetting{Key: key, Value: value})
    }
    
    // setBuildInfo gathers build information and sets it into
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. src/main/webapp/js/admin/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
  8. src/main/webapp/js/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
  9. src/net/http/serve_test.go

    	default:
    	}
    	return nil
    }
    
    // reqBytes treats req as a request (with \n delimiters) and returns it with \r\n delimiters,
    // ending in \r\n\r\n
    func reqBytes(req string) []byte {
    	return []byte(strings.ReplaceAll(strings.TrimSpace(req), "\n", "\r\n") + "\r\n\r\n")
    }
    
    type handlerTest struct {
    	logbuf  bytes.Buffer
    	handler Handler
    }
    
    func newHandlerTest(h Handler) handlerTest {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top