Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,258 for covered (0.6 sec)

  1. platforms/documentation/docs/src/docs/userguide/native/building_cpp_projects.adoc

    The {cpp} plugins covered in this chapter were https://blog.gradle.org/introducing-the-new-cpp-plugins[introduced in 2018] and we recommend users to use those plugins over <<native_software.adoc#native_software,the older Native plugins>> that you may find references to.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/project/interpolation/AbstractStringBasedModelInterpolator.java

            // sure interpolation of the directories below uses translated paths.
            // Afterward, we'll double back and translate any paths that weren't covered during interpolation via the
            // code below...
            translatedPrefixes.add("build.directory");
            translatedPrefixes.add("build.outputDirectory");
            translatedPrefixes.add("build.testOutputDirectory");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/controller.go

    	if len(deltaUsage) == 0 {
    		return quotas, nil
    	}
    
    	// verify that for every resource that had limited by default consumption
    	// enabled that there was a corresponding quota that covered its use.
    	// if not, we reject the request.
    	hasNoCoveringQuota := limitedResourceNamesSet.Difference(restrictedResourcesSet)
    	if len(hasNoCoveringQuota) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  4. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/tasks/SourceSet.java

    import org.gradle.api.plugins.ExtensionAware;
    
    import javax.annotation.Nullable;
    
    /**
     * A {@code SourceSet} represents a logical group of Java source and resource files. They
     * are covered in more detail in the
     * <a href="https://docs.gradle.org/current/userguide/building_java_projects.html#sec:java_source_sets">user manual</a>.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelInterpolator.java

            // sure interpolation of the directories below uses translated paths.
            // Afterward, we'll double back and translate any paths that weren't covered during interpolation via the
            // code below...
            translatedPrefixes.add("build.directory");
            translatedPrefixes.add("build.outputDirectory");
            translatedPrefixes.add("build.testOutputDirectory");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/JavaExec.java

        public JavaVersion getJavaVersion() {
            return JavaVersion.toVersion(getJavaLauncher().get().getMetadata().getLanguageVersion().asInt());
        }
    
        /**
         * {@inheritDoc}
         */
        @Internal("covered by getJavaVersion")
        @Nullable
        @Override
        public String getExecutable() {
            return javaExecSpec.getExecutable();
        }
    
        /**
         * {@inheritDoc}
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/-HostnamesCommon.kt

          return true
        }
        // Check for the characters mentioned in the WHATWG Host parsing spec:
        // U+0000, U+0009, U+000A, U+000D, U+0020, "#", "%", "/", ":", "?", "@", "[", "\", and "]"
        // (excluding the characters covered above).
        if (" #%/:?@[\\]".indexOf(c) != -1) {
          return true
        }
      }
      return false
    }
    
    /** Decodes an IPv6 address like 1111:2222:3333:4444:5555:6666:7777:8888 or ::1. */
    internal fun decodeIpv6(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. internal/ioutil/ioutil.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    // Package ioutil implements some I/O utility functions which are not covered
    // by the standard library.
    package ioutil
    
    import (
    	"context"
    	"errors"
    	"io"
    	"os"
    	"runtime/debug"
    	"sync"
    	"time"
    
    	"github.com/dustin/go-humanize"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/deadstore.go

    			// We need to keep nil checks even if they have no use.
    			// Also keep calls and values that have side effects.
    			return
    		}
    
    		// If the address of the auto reaches a memory or control
    		// operation not covered above then we probably need to keep it.
    		// We also need to keep autos if they reach Phis (issue #26153).
    		if v.Type.IsMemory() || v.Type.IsFlags() || v.Op == OpPhi || v.MemoryArg() != nil {
    			for _, a := range args {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. pkg/kubelet/kubeletconfig/util/files/files_test.go

    		},
    	}
    	for _, c := range cases {
    		t.Run(c.desc, func(t *testing.T) {
    			c.run(t, &utilfs.DefaultFs{})
    		})
    	}
    }
    
    func TestWriteTempDir(t *testing.T) {
    	// writing a tmp dir is covered by TestReplaceDir, but we additionally test filename validation here
    	c := test{
    		desc: "invalid file key",
    		err:  "invalid file key",
    		fn: func(fs utilfs.Filesystem, dir string, c *test) []error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 07 11:36:13 UTC 2022
    - 11.7K bytes
    - Viewed (0)
Back to top