Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 855 for Extract (0.24 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/CustomTestAnnotation.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model.internal.manage.schema.extract
    
    import java.lang.annotation.Retention
    import java.lang.annotation.RetentionPolicy
    
    @Retention(RetentionPolicy.RUNTIME)
    @interface CustomTestAnnotation {
        String value();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 849 bytes
    - Viewed (0)
  2. internal/s3select/sql/parser.go

    	Arg2 *Operand     `parser:" | \",\" @@ "`
    	Arg3 *Operand     `parser:"   (\",\" @@)? \")\" )"`
    }
    
    // ExtractFunc represents EXTRACT sql function
    type ExtractFunc struct {
    	Timeword string       `parser:" \"EXTRACT\" \"(\" @( \"YEAR\":Timeword | \"MONTH\":Timeword | \"DAY\":Timeword | \"HOUR\":Timeword | \"MINUTE\":Timeword | \"SECOND\":Timeword | \"TIMEZONE_HOUR\":Timeword | \"TIMEZONE_MINUTE\":Timeword ) "`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/SpecialModelSet.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model.internal.manage.schema.extract;
    
    import org.gradle.model.ModelSet;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 762 bytes
    - Viewed (0)
  4. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/transform/ModelBlockTransformer.java

            this.scriptSourceDescription = scriptSourceDescription;
            this.location = location;
        }
    
        /*
            TODO change this so that we extract all the information at compile time.
    
            At the moment we use the transform to:
    
            1. validate/restrict the syntax
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/CSourceParser.java

     */
    
    package org.gradle.language.nativeplatform.internal.incremental.sourceparser;
    
    import org.gradle.language.nativeplatform.internal.IncludeDirectives;
    
    import java.io.File;
    
    /**
     * A parser to extract information from C-compatible source files.
     */
    public interface CSourceParser {
    
        IncludeDirectives parseSource(File sourceFile);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 953 bytes
    - Viewed (0)
  6. pkg/slices/slices_test.go

    	testCases := []struct {
    		name     string
    		input    []int
    		extract  func(a int) int
    		expected []int
    	}{
    		{
    			name:     "Normal Case",
    			input:    []int{4, 2, 3, 1},
    			extract:  func(a int) int { return a },
    			expected: []int{1, 2, 3, 4},
    		},
    		{
    			name:     "Reverse Case",
    			input:    []int{1, 2, 3, 4},
    			extract:  func(a int) int { return -a },
    			expected: []int{4, 3, 2, 1},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ModelSchemaAspectExtractionResult.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model.internal.manage.schema.extract;
    
    public class ModelSchemaAspectExtractionResult {
        private final ModelSchemaAspect aspect;
    
        public ModelSchemaAspectExtractionResult(ModelSchemaAspect aspect) {
            this.aspect = aspect;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 953 bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/ManagedImplStructSchema.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model.internal.manage.schema;
    
    import org.gradle.model.internal.manage.schema.extract.ModelSchemaAspect;
    import org.gradle.model.internal.method.WeaklyTypeReferencingMethod;
    import org.gradle.model.internal.type.ModelType;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. platforms/software/resources/src/main/java/org/gradle/internal/resource/Resource.java

     */
    
    package org.gradle.internal.resource;
    
    import org.gradle.api.Describable;
    
    /**
     * Represents some resource that may have content.
     *
     * <p>This type is currently pretty much empty. It's here as a place to extract and reuse stuff from the various subtypes, which all stared off as separate hierarchies.
     */
    public interface Resource extends Describable {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. pkg/wasm/imagefetcher.go

    	}
    	defer r.Close()
    
    	ret, err := extractWasmPluginBinary(r)
    	if err != nil {
    		return nil, fmt.Errorf("could not extract wasm binary: %v", err)
    	}
    	return ret, nil
    }
    
    // extractOCIStandardImage extracts the Wasm binary from the
    // *compat* variant Wasm image with the standard OCI media type: application/vnd.oci.image.layer.v1.tar+gzip.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 10 05:44:51 UTC 2023
    - 12K bytes
    - Viewed (0)
Back to top