Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 509 for replaceable (0.27 sec)

  1. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/ImmutableCollections.java

                throw uoe();
            }
    
            @Override
            public boolean removeIf(Predicate<? super E> filter) {
                throw uoe();
            }
    
            @Override
            public void replaceAll(UnaryOperator<E> operator) {
                throw uoe();
            }
    
            @Override
            public void sort(Comparator<? super E> c) {
                throw uoe();
            }
    
            @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 22 17:27:48 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testerrors/badsym_test.go

    		}
    
    		obj = bytes.ReplaceAll(obj, []byte(magicInput), []byte(magicReplace))
    
    		if err := os.WriteFile(to, obj, 0644); err != nil {
    			t.Fatal(err)
    		}
    	}
    
    	cBadShared := filepath.Join(godir, "cbad.so")
    	rewrite(cShared, cBadShared)
    
    	cBadObj := filepath.Join(godir, "cbad.o")
    	rewrite(cObj, cBadObj)
    
    	goSourceBadObject := strings.ReplaceAll(goSource, "TMPDIR", godir)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 01:37:31 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/checkstyle/CheckstyleRelocationIntegrationTest.groovy

                }
            """
        }
    
        @Override
        protected extractResultsFrom(TestFile projectDir) {
            return projectDir.file("build/reports/checkstyle/checkstyle.xml").text
                .replaceAll(Pattern.quote(projectDir.absolutePath + File.separator) + ".*?" + Pattern.quote(File.separator), "")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/EmbeddedKotlinOutputNormalizer.groovy

                ? normalizeKotlinOutput(output)
                : output
        }
    
        private String normalizeKotlinOutput(String output) {
            PATTERN.matcher(output)
                .replaceAll("")
                .with {
                    // remove starting empty line
                    it.startsWith('\n')
                        ? it.substring(1)
                        : it
                }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/token.go

    			if err != nil {
    				return errors.Wrap(err, "failed to get join command")
    			}
    			joinCommand = strings.ReplaceAll(joinCommand, "\\\n", "")
    			joinCommand = strings.ReplaceAll(joinCommand, "\t", "")
    			fmt.Fprintln(out, joinCommand)
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest.groovy

            def text = file.text.replaceAll(pattern, '@CACHE_DIR@/$1/@SHA1@/')
            pattern = Pattern.compile("GRADLE_USER_HOME/${CacheLayout.MODULES.getKey()}/${CacheLayout.FILE_STORE.getKey()}/([^/]+/[^/]+/[^/]+)/[a-z0-9]+/")
            text = text.replaceAll(pattern, 'GRADLE_USER_HOME/@CACHE@/$1/@SHA1@/')
    
            //remove trailing slashes for windows paths
            text = text.replaceAll("jar:file:/", 'jar:file:')
            return text
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. src/syscall/syscall_windows_test.go

    		t.Fatalf("c program execution failed: %v: %v", err, string(out))
    	}
    
    	hostname, err := os.Hostname()
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	have := strings.ReplaceAll(string(out), "\n", "")
    	have = strings.ReplaceAll(have, "\r", "")
    	want := fmt.Sprintf("%sHello World%s", hostname, hostname)
    	if have != want {
    		t.Fatalf("c program output is wrong: got %q, want %q", have, want)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 16:33:09 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  8. src/cmd/go/internal/robustio/robustio_flaky.go

    // rename is like os.Rename, but retries ephemeral errors.
    //
    // On Windows it wraps os.Rename, which (as of 2019-06-04) uses MoveFileEx with
    // MOVEFILE_REPLACE_EXISTING.
    //
    // Windows also provides a different system call, ReplaceFile,
    // that provides similar semantics, but perhaps preserves more metadata. (The
    // documentation on the differences between the two is very sparse.)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/log/ApiAdminLogAction.java

        // GET /api/admin/log/file/{id}
        @Execute
        public StreamResponse get$file(final String id) {
            final String filename = new String(Base64.getDecoder().decode(id), StandardCharsets.UTF_8).replace("..", "").replaceAll("\\s", "");
            final String logFilePath = systemHelper.getLogFilePath();
            if (StringUtil.isNotBlank(logFilePath) && isLogFilename(filename)) {
                final Path path = Paths.get(logFilePath, filename);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. src/mdo/java/ImmutableCollections.java

                throw uoe();
            }
    
            @Override
            public boolean removeIf(Predicate<? super E> filter) {
                throw uoe();
            }
    
            @Override
            public void replaceAll(UnaryOperator<E> operator) {
                throw uoe();
            }
    
            @Override
            public void sort(Comparator<? super E> c) {
                throw uoe();
            }
    
            @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 22 17:27:48 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top