Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 403 for getPost (0.17 sec)

  1. src/cmd/vendor/github.com/google/pprof/third_party/svgpan/svgpan.js

    		window.addEventListener('DOMMouseScroll', handleMouseWheel, false); // Others
    }
    
    /**
     * Retrieves the root element for SVG manipulation. The element is then cached into the svgRoot global variable.
     */
    function getRoot(root) {
    	if(svgRoot == null) {
    		var r = root.getElementById("viewport") ? root.getElementById("viewport") : root.documentElement, t = r;
    
    		while(t != root) {
    			if(t.getAttribute("viewBox")) {
    				setCTM(r, t.getCTM());
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/testers/ListRetainAllTester.java

      @CollectionSize.Require(SEVERAL)
      public void testRetainAll_countIgnored() {
        resetContainer(getSubjectGenerator().create(e0(), e2(), e1(), e0()));
        assertTrue(getList().retainAll(Arrays.asList(e0(), e1())));
        assertContentsInOrder(getList(), e0(), e1(), e0());
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/AbstractFileAccessor.java

        }
    
        private Path getPath(String name, Level level) {
            return directoryProvider.getRoot(level).resolve(name);
        }
    
        @Override
        public DataTargetFactory createTargetFactory(final String root, Level level) throws IOException {
            final Path rootDir = Files.createTempDirectory(directoryProvider.getRoot(level), root);
            return new DataTargetFactory() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. src/cmd/internal/test2json/test2json_test.go

    		t.Fatal(buf.String())
    	}
    
    	var outputTest string             // current "Test" key in "output" events
    	var wantOutput, haveOutput string // collected "Output" of those events
    
    	// getTest returns the "Test" setting, or "" if it is missing.
    	getTest := func(e event) string {
    		s, _ := e["Test"].(string)
    		return s
    	}
    
    	// checkOutput collects output from the haveEvents for the current outputTest
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 19:50:36 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestExecution.java

        /**
         * Returns the results of the scenarios executed as part of this performance test.
         */
        List<MeasuredOperationList> getScenarios();
    
        String getOperatingSystem();
    
        String getHost();
    
        String getJvm();
    
        /**
         * The test project name. Null if not known or not constant for all experiments
         */
        @Nullable
        String getTestProject();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/RepositoryUtils.java

                AuthenticationBuilder authBuilder = new AuthenticationBuilder();
                authBuilder.addUsername(proxy.getUserName()).addPassword(proxy.getPassword());
                result = new Proxy(proxy.getProtocol(), proxy.getHost(), proxy.getPort(), authBuilder.build());
            }
            return result;
        }
    
        public static ArtifactHandler newHandler(Artifact artifact) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/suggest/entity/ElevateWord.java

                this.roles = Collections.emptyList();
            } else {
                this.roles = roles;
            }
        }
    
        public String getElevateWord() {
            return elevateWord;
        }
    
        public float getBoost() {
            return boost;
        }
    
        public List<String> getReadings() {
            return readings;
        }
    
        public List<String> getFields() {
            return fields;
        }
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/analysis/cost_analysis.h

          mlir::func::FuncOp func_op,
          const tfrt_stub::CostRecorder* cost_recorder = nullptr) {
        cost_recorder_ = cost_recorder;
        AnalyzeArguments(func_op);
        AnalyzeBlock(&func_op.front());
      }
    
      int64_t GetCost(mlir::Operation* op) const;
    
     private:
      void AnalyzeArguments(mlir::func::FuncOp func_op);
      void AnalyzeBlock(mlir::Block* block);
      void EvaluateCost(mlir::Operation* op);
    
      int64_t max_arg_size_ = 1;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. cmd/warm-backend-azure.go

    	"github.com/minio/madmin-go/v3"
    )
    
    type warmBackendAzure struct {
    	serviceURL   azblob.ServiceURL
    	Bucket       string
    	Prefix       string
    	StorageClass string
    }
    
    func (az *warmBackendAzure) getDest(object string) string {
    	destObj := object
    	if az.Prefix != "" {
    		destObj = fmt.Sprintf("%s/%s", az.Prefix, object)
    	}
    	return destObj
    }
    
    func (az *warmBackendAzure) tier() azblob.AccessTierType {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 05 16:44:08 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbFile.java

            this.isExists = false;
    
            try {
                if ( this.url.getHost().length() == 0 ) {}
                else if ( this.fileLocator.getShare() == null ) {
                    if ( this.fileLocator.getType() == TYPE_WORKGROUP ) {
                        getContext().getNameServiceClient().getByName(this.url.getHost(), true);
                    }
                    else {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
Back to top