Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,973 for gsed (0.13 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

        def setup() {
            expectReindentedValidationMessage()
        }
    
        @Issue("https://github.com/gradle/gradle/issues/13333")
        def "absent #operator orElse #orElseKind used as task input"() {
    
            assumeFalse(
                'task dependency inference for orElse(taskOutput) not implemented yet!',
                orElseKind == 'task output'
            )
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/native/cpp_application_plugin.adoc

    Used for executing the application.
    This configuration is meant to be used by consumers, to retrieve all the elements necessary to run the application.
    
    The following configurations are used by the application itself:
    
    `cppCompile__Variant__` (e.g. `cppCompileDebug` and `cppCompileRelease`) extends `main__Variant__Implementation`::
    Used for compiling the application.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/logging/TestLogging.java

         *
         * @return the set of filters to be used for sanitizing test stack traces
         */
        Set<TestStackTraceFilter> getStackTraceFilters();
    
        /**
         * Sets the set of filters to be used for sanitizing test stack traces.
         *
         * @param stackTraces the set of filters to be used for sanitizing test stack traces
         * @since 4.0
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  4. src/cmd/internal/objabi/reloctype.go

    	R_CALLARM
    	R_CALLARM64
    	R_CALLIND
    	R_CALLPOWER
    	// R_CALLMIPS (only used on mips64) resolves to non-PC-relative target address
    	// of a CALL (JAL) instruction, by encoding the address into the instruction.
    	R_CALLMIPS
    	R_CONST
    	R_PCREL
    	// R_TLS_LE, used on 386, amd64, and ARM, resolves to the offset of the
    	// thread-local symbol from the thread local base and is used to implement the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java

                fsObj.free = f.getFreeSpace();
                fsObj.total = f.getTotalSpace();
                fsObj.usable = f.getUsableSpace();
                fsObj.used = fsObj.total - fsObj.usable;
                fsObj.percent = (short) (100 * fsObj.used / fsObj.total);
                return fsObj;
            }).toArray(n -> new FsObj[n]);
        }
    
        private JvmObj getJvmObj() {
            final JvmObj jvmObj = new JvmObj();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    * types used in super classes or interfaces
    * types used in public method parameters, including generic parameter types (where _public_ is something that is visible to compilers. I.e. , _public_, _protected_ and _package private_ members in the Java world)
    * types used in public fields
    * public annotation types
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types_jsonschema.go

    const (
    	// FieldValueRequired is used to report required values that are not
    	// provided (e.g. empty strings, null values, or empty arrays).
    	FieldValueRequired FieldValueErrorReason = "FieldValueRequired"
    	// FieldValueDuplicate is used to report collisions of values that must be
    	// unique (e.g. unique IDs).
    	FieldValueDuplicate FieldValueErrorReason = "FieldValueDuplicate"
    	// FieldValueInvalid is used to report malformed values (e.g. failed regex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 22:23:23 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

         * though it's racy, we don't care which of those values we get, so no need to synchronize.
         */
        @CheckForNull @LazyInit Thread thread;
    
        /** Only used by the thread associated with this object */
        @CheckForNull Runnable nextTask;
    
        /** Only used by the thread associated with this object */
        @CheckForNull Executor nextExecutor;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/file/CopySpec.java

        /**
         * Gets the charset used to read and write files when filtering.
         * By default, the JVM default charset is used.
         *
         * @return the charset used to read and write files when filtering
         * @since 2.14
         */
        String getFilteringCharset();
    
        /**
         * Specifies the charset used to read and write files when filtering.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:15 UTC 2022
    - 12.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types_jsonschema.go

    const (
    	// FieldValueRequired is used to report required values that are not
    	// provided (e.g. empty strings, null values, or empty arrays).
    	FieldValueRequired FieldValueErrorReason = "FieldValueRequired"
    	// FieldValueDuplicate is used to report collisions of values that must be
    	// unique (e.g. unique IDs).
    	FieldValueDuplicate FieldValueErrorReason = "FieldValueDuplicate"
    	// FieldValueInvalid is used to report malformed values (e.g. failed regex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
Back to top