Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 148 for Scans (0.03 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/proxy/transport.go

    	if strings.HasSuffix(origPath, "/") {
    		// Add back the trailing slash, which was stripped by path.Join().
    		url.Path += "/"
    	}
    
    	return url.String()
    }
    
    // rewriteHTML scans the HTML for tags with url-valued attributes, and updates
    // those values with the urlRewriter function. The updated HTML is output to the
    // writer.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultIvyArtifactRepository.java

                artifact = false;
                ignoreGradleMetadataRedirection = false;
            }
    
            /**
             * This is used to generate the repository id and for reporting purposes on build scans.
             * Changing this means a change of repository.
             *
             * @return a list of implemented metadata sources, as strings.
             */
            List<String> asList() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/multi_project_builds.adoc

    All letters are lowercase, and words are separated with a dash (`-`) character.
    
    3. *Define the root project name in the settings file*:
    The `rootProject.name` effectively assigns a name to the build, used in reports like Build Scans.
    If the root project name is not set, the name will be the container directory name, which can be unstable (i.e., you can check out your project in any directory).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 00:33:43 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. src/cmd/pack/pack.go

    			a, err = archive.New(f)
    		}
    	}
    	if err != nil {
    		log.Fatal(err)
    	}
    	return &Archive{
    		a:        a,
    		files:    files,
    		matchAll: len(files) == 0,
    	}
    }
    
    // scan scans the archive and executes the specified action on each entry.
    func (ar *Archive) scan(action func(*archive.Entry)) {
    	for i := range ar.a.Entries {
    		e := &ar.a.Entries[i]
    		action(e)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

     . link:https://scans.gradle.com[Create a build scan for the Maven build].
    +
    A build scan will make it easier to visualize what's happening in your existing Maven build.
    For Maven builds, you will be able to see the project structure, what plugins are being used, a timeline of the build steps, and more.
    Keep this handy so you can compare it to the Gradle build scans while converting the project.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  6. pkg/kubelet/volumemanager/reconciler/reconstruct_common.go

    		return gvi.deviceMounter.GetDeviceMountPath(gvi.volumeSpec)
    	} else {
    		return "", fmt.Errorf("blockVolumeMapper or deviceMounter required")
    	}
    }
    
    // getVolumesFromPodDir scans through the volumes directories under the given pod directory.
    // It returns a list of pod volume information including pod's uid, volume's plugin name, mount path,
    // and volume spec name.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/pod_container_manager_linux.go

    	}
    	parts := strings.Split(basePath, podCgroupNamePrefix)
    	if len(parts) != 2 {
    		return false, types.UID("")
    	}
    	return true, types.UID(parts[1])
    }
    
    // GetAllPodsFromCgroups scans through all the subsystems of pod cgroups
    // Get list of pods whose cgroup still exist on the cgroup mounts
    func (m *podContainerManagerImpl) GetAllPodsFromCgroups() (map[types.UID]CgroupName, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 16:38:36 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/escape/UnicodeEscaper.java

        checkNotNull(string);
        int end = string.length();
        int index = nextEscapeIndex(string, 0, end);
        return index == end ? string : escapeSlow(string, index);
      }
    
      /**
       * Scans a sub-sequence of characters from a given {@link CharSequence}, returning the index of
       * the next character that requires escaping.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 13.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/escape/UnicodeEscaper.java

        checkNotNull(string);
        int end = string.length();
        int index = nextEscapeIndex(string, 0, end);
        return index == end ? string : escapeSlow(string, index);
      }
    
      /**
       * Scans a sub-sequence of characters from a given {@link CharSequence}, returning the index of
       * the next character that requires escaping.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 13.2K bytes
    - Viewed (0)
  10. docs/metrics/v3.md

    | `minio_scanner_bucket_scans_finished`      | `counter` | Total number of bucket scans finished since server start   | `server` |
    | `minio_scanner_bucket_scans_started`       | `counter` | Total number of bucket scans started since server start    | `server` |
    | `minio_scanner_directories_scanned`        | `counter` | Total number of directories scanned since server start     | `server` |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
Back to top