Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 142 for getLeft (0.44 sec)

  1. android/guava/src/com/google/common/collect/CompactHashMap.java

              V oldValue = (V) values[entryIndex];
    
              values[entryIndex] = value;
              accessEntry(entryIndex);
              return oldValue;
            }
            next = CompactHashing.getNext(entry, mask);
            bucketLength++;
          } while (next != UNSET);
    
          if (bucketLength >= MAX_HASH_BUCKET_LENGTH) {
            return convertToHashFloodingResistantImplementation().put(key, value);
          }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/LogContent.java

                StringBuilder result = new StringBuilder();
                console.contents(token -> {
                    if (token instanceof Text) {
                        result.append(((Text) token).getText());
                    } else if (token instanceof NewLine) {
                        result.append("\n");
                    }
                });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/ApiExtractor.java

                } catch (final IOException e) {
                    logger.error("Failed to close httpClient.", e);
                }
            }
        }
    
        @Override
        public ExtractData getText(final InputStream in, final Map<String, String> params) {
            if (logger.isDebugEnabled()) {
                logger.debug("Accessing {}", url);
            }
    
            // start
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/BasicZincScalaCompilerIntegrationTest.groovy

                application.mainClass = "Main"
                compileScala.scalaCompileOptions.encoding = "ISO8859_7"
            """
    
            expect:
            succeeds("run")
            file("encoded.out").getText("utf-8") == "\u03b1\u03b2\u03b3"
        }
    
        def compilesWithSpecifiedDebugSettings() {
            given:
            goodCode()
    
            when:
            run("compileScala")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/functional_control_flow_to_regions.cc

                 generator_region.getInitFuncOtherArgs(),
                 /*use_region_args=*/true, /*forward_block_args=*/false);
      CreateCall(generator_op, next_function, generator_region.getNext(),
                 generator_region.getNextFuncOtherArgs(),
                 /*use_region_args=*/true, /*forward_block_args=*/false);
      CreateCall(generator_op, finalize_function, generator_region.getFinalize(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. cmd/utils.go

    	logger.AuditLog(ctx, nil, nil, nil)
    }
    
    func newTLSConfig(getCert certs.GetCertificateFunc) *tls.Config {
    	if getCert == nil {
    		return nil
    	}
    
    	tlsConfig := &tls.Config{
    		PreferServerCipherSuites: true,
    		MinVersion:               tls.VersionTLS12,
    		NextProtos:               []string{"http/1.1", "h2"},
    		GetCertificate:           getCert,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  7. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonServer.java

                    public ReadableResource bzip2(Object path) {
                        throw new UnsupportedOperationException();
                    }
    
                    @Override
                    public TextResourceFactory getText() {
                        throw new UnsupportedOperationException();
                    }
                };
    
                return fileOperations -> resourceHandler;
            }
    
            @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr6_writing_tasks.adoc

                int lastIndexOf = file.getName().lastIndexOf('.')
                if ((lastIndexOf != -1) && (file.getName().substring(lastIndexOf)) == ".java") {// Read the source code
                    def content = file.getText()
                    //println(licenseText + '\n' + content)
                    // Write the license and the source code to the file
                    file.text = licenseText + '\n' + content
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/language/match.go

    				conf = High
    			}
    			update(lm.To, lm.From, conf)
    		}
    		update(lm.From, lm.To, conf)
    	}
    	return m
    }
    
    // getBest gets the best matching tag in m for any of the given tags, taking into
    // account the order of preference of the given tags.
    func (m *matcher) getBest(want ...Tag) (got *haveTag, orig language.Tag, c Confidence) {
    	best := bestMatch{}
    	for i, ww := range want {
    		w := ww.tag()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/suggest/util/SuggestUtil.java

            firstLineInnerMap.put("_id", item.getId());
            firstLineMap.put("index", firstLineInnerMap);
    
            final Map<String, Object> secondLine = new HashMap<>();
    
            secondLine.put("text", item.getText());
    
            // reading
            final String[][] readings = item.getReadings();
            for (int i = 0; i < readings.length; i++) {
                secondLine.put("reading_" + i, readings[i]);
            }
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top