Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,141 for get2s (0.03 sec)

  1. src/time/tzdata/tzdata.go

    	idx := len(z) - ztailsize
    	n := get2s(z[idx+10:])
    	idx = get4s(z[idx+16:])
    
    	for i := 0; i < n; i++ {
    		// See time.loadTzinfoFromZip for zip entry layout.
    		if get4s(z[idx:]) != zcheader {
    			break
    		}
    		meth := get2s(z[idx+10:])
    		size := get4s(z[idx+24:])
    		namelen := get2s(z[idx+28:])
    		xlen := get2s(z[idx+30:])
    		fclen := get2s(z[idx+32:])
    		off := get4s(z[idx+42:])
    		zname := z[idx+46 : idx+46+namelen]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 22:30:53 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/settings/SettingsUtilsTest.java

            assertEquals(
                    p.getActivation().getOs().getArch(),
                    clone.getActivation().getOs().getArch());
            assertEquals(
                    p.getActivation().getOs().getFamily(),
                    clone.getActivation().getOs().getFamily());
            assertEquals(
                    p.getActivation().getOs().getName(),
                    clone.getActivation().getOs().getName());
            assertEquals(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/cache/cache_test.go

    		}
    	}
    	for i := 0; i < n; i++ {
    		id := ActionID(dummyID(i))
    		entry, err := c.Get(id)
    		if err != nil {
    			t.Fatalf("Get2(%x): %v", id, err)
    		}
    		if entry.OutputID != dummyID(i*99) || entry.Size != int64(i)*101 {
    			t.Errorf("Get2(%x) = %x, %d, want %x, %d", id, entry.OutputID, entry.Size, dummyID(i*99), int64(i)*101)
    		}
    	}
    }
    
    func TestVerifyPanic(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:49:37 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-customTaskClass/groovy/buildSrc/src/main/java/org/example/ProcessTemplates.java

        @OutputDirectory
        public abstract DirectoryProperty getOutputDir();
    
        @Inject
        public abstract FileSystemOperations getFs();
    
        @TaskAction
        public void processTemplates() {
            // ...
    // end::custom-task-class[]
            getFs().copy(spec -> spec.
                into(getOutputDir()).
                from(getSourceFiles()).
                expand(new HashMap<>(getTemplateData().getVariables().get()))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-customTaskClass/kotlin/buildSrc/src/main/java/org/example/ProcessTemplates.java

        @OutputDirectory
        public abstract DirectoryProperty getOutputDir();
    
        @Inject
        public abstract FileSystemOperations getFs();
    
        @TaskAction
        public void processTemplates() {
            // ...
    // end::custom-task-class[]
            getFs().copy(spec -> spec.
                into(getOutputDir()).
                from(getSourceFiles()).
                expand(new HashMap<>(getTemplateData().getVariables().get()))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/DependencyResolutionResult.java

     *
     */
    public interface DependencyResolutionResult {
    
        /**
         * Gets the dependency graph of the project.
         *
         * @return The dependency graph or {@code null} if not available.
         */
        DependencyNode getDependencyGraph();
    
        /**
         * Gets the transitive dependencies of the project that were not excluded by
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/conversion_test.go

    				),
    				// new name gets preserved from versioned object, type gets set explicitly
    				VersionedObject: &examplev1.Pod{TypeMeta: metav1.TypeMeta{APIVersion: "example.apiserver.k8s.io/v1", Kind: "Pod"}, ObjectMeta: metav1.ObjectMeta{Name: "newpodversioned"}},
    				// old name gets overwritten from converted attributes, type gets set explicitly
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/ModelSchemaUtilsTest.groovy

            CharSequence someOverriddenCovariantMethod(Object param)
        }
    
        def "gets overridden methods from single type"() {
            expect:
            ModelSchemaUtils.getCandidateMethods(TypeWithOverloadedMethods).overriddenMethodsNamed("someOverloadedMethod").isEmpty()
        }
    
        def "gets overloaded methods from a single type"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsProblem.java

         */
        String getSource();
    
        /**
         * Gets the one-based index of the line containing the problem. The line number should refer to some text file that
         * is given by {@link #getSource()}.
         *
         * @return The one-based index of the line containing the problem or a non-positive value if unknown.
         */
        int getLineNumber();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/profile/ProfileActivationContext.java

         * @since 4.0.0
         */
        String PROPERTY_NAME_PACKAGING = "packaging";
    
        /**
         * Gets the identifiers of those profiles that should be activated by explicit demand.
         *
         * @return The identifiers of those profiles to activate, never {@code null}.
         */
        List<String> getActiveProfileIds();
    
        /**
         * Gets the identifiers of those profiles that should be deactivated by explicit demand.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top