Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 95 for consuming (1.69 sec)

  1. src/test/java/org/codelibs/opensearch/extension/analysis/ReloadableKuromojiTokenizerFactory.java

                        + "reset() called multiple times, or subclass does not call super.reset(). "
                        + "Please see Javadocs of TokenStream class for more information about the correct consuming workflow.");
            }
    
            @Override
            public void close() {
            }
        };
    
        protected final Field inputPendingField;
    
        protected final Field userDictionaryField;
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. src/net/http/transport_dial_test.go

    	}
    	if rt.conn != c {
    		rt.t.Fatalf("RoundTrip %v: want on conn %v, got conn %v", rt.roundTripID, c.connID, rt.conn.connID)
    	}
    }
    
    // finish completes a RoundTrip by sending the request body, consuming the response body,
    // and closing the response body.
    func (rt *transportDialTesterRoundTrip) finish() {
    	rt.t.Helper()
    
    	if rt.finished {
    		return
    	}
    	rt.finished = true
    
    	<-rt.done
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:11:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/java_platform_plugin.adoc

    ====
    
    This will generate a BOM file for the platform, with a `<dependencyManagement>` block where its `<dependencies>` correspond to the constraints defined in the platform module.
    
    [[sec:java_platform_consumption]]
    == Consuming platforms
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/file/FileCollection.java

     * property, Gradle will take care of automatically adding dependencies between the consuming task and the producing tasks.</p>
     *
     * <p>You can obtain a {@code FileCollection} instance using {@link org.gradle.api.Project#files}.</p>
     */
    @HasInternalProtocol
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 05 15:51:59 UTC 2021
    - 8.3K bytes
    - Viewed (0)
  5. test/fixedbugs/issue6902.go

    // run
    
    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 6902: confusing printing of large floating point constants
    
    package main
    
    import (
    	"os"
    )
    
    var x = -1e-10000
    
    func main() {
    	if x != 0 {
    		os.Exit(1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 24 17:10:29 UTC 2014
    - 333 bytes
    - Viewed (0)
  6. test/fixedbugs/issue27938.go

    // errorcheck -d=panic
    
    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Verify that we get a single non-confusing error
    // message for embedded fields/interfaces that use
    // a qualified identifier with non-existing package.
    
    package p
    
    type _ struct {
    	F sync.Mutex // ERROR "undefined: sync|expected package|reference to undefined name"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 06 00:02:11 UTC 2022
    - 696 bytes
    - Viewed (0)
  7. test/fixedbugs/issue12525.go

    // errorcheck
    
    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 12525: confusing error trying to increment boolean value
    
    package main
    
    func main() {
    	var i int
    	i++
    
    	var f float64
    	f++
    
    	var c complex128
    	c++
    
    	var b bool
    	b++ // ERROR "invalid operation: b\+\+ \(non-numeric type bool\)"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 07 14:34:58 UTC 2016
    - 495 bytes
    - Viewed (0)
  8. src/internal/types/testdata/fixedbugs/issue49043.go

    	M[P any] N[P]
    )
    
    // A slightly more complicated case.
    type (
    	A[P any] B /* ERROR "invalid recursive type" */ [P]
    	B[P any] C[P]
    	C[P any] A[P]
    )
    
    // Confusing but valid (note that `type T *T` is valid).
    type (
    	N1[P any] *M1[P]
    	M1[P any] *N1[P]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 512 bytes
    - Viewed (0)
  9. tests/integration/base.yaml

    # This file provides some defaults for integration testing.
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      name: install
    spec:
      meshConfig:
        # Disable retries. This avoids confusing logs and errors, and allows finer grain control for tests
        defaultHttpRetryPolicy: {}
        accessLogFile: "/dev/stdout"
        defaultConfig:
          proxyMetadata:
            ISTIO_META_DNS_CAPTURE: "true"
      values:
        pilot:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/language/doc.go

    // use the same language tag for the selection of any locale-specific services.
    // For example, it is utterly confusing to substitute spelled-out numbers
    // or dates in one language in text of another language.
    // More subtly confusing is using the wrong sorting order or casing
    // algorithm for a certain language.
    //
    // All the packages in x/text that provide locale-specific services
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top