Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for ASC (0.08 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    ----
    
    Then we can use the key information provided in the error message to import the key locally:
    
    ----
    $ gpg --recv-keys B801E2F8EF035068EC1139CC29579F18FA8FD93B
    ----
    
    And perform verification:
    
    ----
    $ gpg --verify j2objc-annotations-1.1.jar.asc
    gpg: assuming signed data in 'j2objc-annotations-1.1.jar'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

            """
    
            when:
            module.pom.expectGet()
            module.getArtifact(type: 'pom.asc').expectGet()
            module.getArtifact(classifier: 'sources').expectHead()
            module.getArtifact(classifier: 'sources').expectGet()
            module.getArtifact(classifier: 'sources', type: 'jar.asc').expectGet()
            module.getArtifact(classifier: 'javadoc').expectHead()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/mips/asm0.go

    	{AMOVBU, C_REG, C_NONE, C_SOREG, 7, 4, REGZERO, 0, 0},
    	{AMOVWL, C_REG, C_NONE, C_SOREG, 7, 4, REGZERO, 0, 0},
    	{AMOVVL, C_REG, C_NONE, C_SOREG, 7, 4, REGZERO, sys.MIPS64, 0},
    	{ASC, C_REG, C_NONE, C_SOREG, 7, 4, REGZERO, 0, 0},
    	{ASCV, C_REG, C_NONE, C_SOREG, 7, 4, REGZERO, sys.MIPS64, 0},
    
    	{AMOVW, C_SEXT, C_NONE, C_REG, 8, 4, REGSB, sys.MIPS64, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/loong64/asm.go

    	{AMOVBU, C_REG, C_NONE, C_NONE, C_SOREG, C_NONE, 7, 4, REGZERO, 0},
    	{AMOVWL, C_REG, C_NONE, C_NONE, C_SOREG, C_NONE, 7, 4, REGZERO, 0},
    	{AMOVVL, C_REG, C_NONE, C_NONE, C_SOREG, C_NONE, 7, 4, REGZERO, 0},
    	{ASC, C_REG, C_NONE, C_NONE, C_SOREG, C_NONE, 7, 4, REGZERO, 0},
    	{ASCV, C_REG, C_NONE, C_NONE, C_SOREG, C_NONE, 7, 4, REGZERO, 0},
    
    	{AMOVW, C_SEXT, C_NONE, C_NONE, C_REG, C_NONE, 8, 4, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

                        if (values.length > 1) {
                            return SortBuilders.fieldSort(values[0]).order("desc".equalsIgnoreCase(values[0]) ? SortOrder.DESC : SortOrder.ASC);
                        }
                        return SortBuilders.fieldSort(values[0]).order(SortOrder.ASC);
                    }).toArray(n -> new SortBuilder[n]));
                    ot = OptionalThing.of(sortBuilders);
                }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/javadoc.css

        background-size:100% 100%;
        width:9px;
        height:14px;
        margin-left:4px;
        margin-bottom:-3px;
    }
    .table-header[onclick].sort-asc::after {
        background-image:url('data:image/svg+xml; utf8, \
        <svg xmlns="http://www.w3.org/2000/svg" width="125" height="170"> \
        <path d="M10.101 57.059L63.019 4.142l52.917 52.917" style="opacity:.75;"/> \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  7. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"audio/32kadpcm",
    				"audio/3gpp",
    				"audio/3gpp2",
    				"audio/ac3",
    				"audio/adpcm",
    				"audio/amr",
    				"audio/amr-wb",
    				"audio/amr-wb+",
    				"audio/asc",
    				"audio/basic",
    				"audio/bv16",
    				"audio/bv32",
    				"audio/clearmode",
    				"audio/cn",
    				"audio/dat12",
    				"audio/dls",
    				"audio/dsr-es201108",
    				"audio/dsr-es202050",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  8. tests/migrate_test.go

    		if err := DB.Create(&AutoIncrementStruct{}).Error; err != nil {
    			t.Fatalf("create auto_increment_struct fail, err: %v", err)
    		}
    	}
    
    	rows := make([]*AutoIncrementStruct, 0, ROWS)
    	if err := DB.Order("id ASC").Find(&rows).Error; err != nil {
    		t.Fatalf("find auto_increment_struct fail, err: %v", err)
    	}
    
    	ids := make([]int64, 0, len(rows))
    	for _, row := range rows {
    		ids = append(ids, row.ID)
    	}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
Back to top