Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 183 for choosing (0.13 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitConsoleLoggingIntegrationTest.groovy

                        System.out.println("< html allowed, cdata closing token ]]> encoded!");
                        System.out.print("no EOL, ");
                        System.out.println("non-asci char: ż");
                        System.out.println("xml entity: &amp;");
                        System.err.println("< html allowed, cdata closing token ]]> encoded!");
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. security/pkg/credentialfetcher/plugin/gce.go

    	p := &GCEPlugin{
    		aud:              audience,
    		jwtPath:          jwtPath,
    		identityProvider: identityProvider,
    		closing:          make(chan bool),
    	}
    	if rotateToken {
    		go p.startTokenRotationJob()
    	}
    	return p
    }
    
    func (p *GCEPlugin) Stop() {
    	close(p.closing)
    }
    
    func (p *GCEPlugin) startTokenRotationJob() {
    	// Wake up once in a while and refresh GCE VM credential.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. pkg/config/validation/header_value_validator.go

    	ExpectArrayDelimiterOrEndParserState                    // expect array delimiter (,) or end of array (])
    	ExpectArgsEndParserState                                // expect closing ) in %VAR(...)%
    	ExpectVariableEndParserState                            // expect closing % in %VAR(...)%
    )
    
    // validateHeaderValue is golang port version of
    // https://github.com/envoyproxy/envoy/blob/master/source/common/router/header_parser.cc#L73
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 15 21:37:52 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/IoActionsTest.groovy

        }
    
        def "rethrows unchecked exception when closing resource"() {
            def resource = Mock(Closeable)
    
            when:
            uncheckedClose(resource)
    
            then:
            1 * resource.close() >> { throw new IOException() }
            thrown(UncheckedIOException)
        }
    
        def "does not rethrow exception when closing resource"() {
            def resource = Mock(Closeable)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. pilot/pkg/status/resourcelock.go

    func (wq *WorkQueue) Delete(target Resource) {
    	wq.lock.Lock()
    	defer wq.lock.Unlock()
    	delete(wq.cache, convert(target))
    }
    
    type WorkerPool struct {
    	q WorkQueue
    	// indicates the queue is closing
    	closing bool
    	// the function which will be run for each task in queue
    	write func(*config.Config, any)
    	// the function to retrieve the initial status
    	get func(Resource) *config.Config
    	// current worker routine count
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 04 03:39:42 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/ws/WebSocketRecorder.kt

        val delegate = delegate
        if (delegate != null) {
          this.delegate = null
          delegate.onClosing(webSocket, code, reason)
        } else {
          events.add(Closing(code, reason))
        }
      }
    
      override fun onClosed(
        webSocket: WebSocket,
        code: Int,
        reason: String,
      ) {
        Platform.get().log("[WS $name] onClosed $code", Platform.INFO, null)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. test/fixedbugs/issue22164.go

    // errorcheck
    
    // Copyright 2017 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.
    
    // Test error recovery after missing closing parentheses in lists.
    
    package p
    
    func f() {
    	x := f(g() // ERROR "unexpected newline"
    	y := 1
    }
    
    func g() {
    }
    
    func h() {
    	x := f(g() // ERROR "unexpected newline"
    }
    
    func i() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 01:04:56 UTC 2017
    - 458 bytes
    - Viewed (0)
  8. src/cmd/go/internal/vcweb/svn.go

    }
    
    // An svnState describes the state of a port serving the 'svn://' protocol.
    type svnState struct {
    	listener  net.Listener
    	listenErr error
    	conns     map[net.Conn]struct{}
    	closing   bool
    	done      chan struct{}
    }
    
    func (h *svnHandler) Available() bool {
    	h.pathOnce.Do(func() {
    		h.svnservePath, h.svnserveErr = exec.LookPath("svnserve")
    	})
    	return h.svnserveErr == nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:44:48 UTC 2022
    - 5K bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/service/BaseRemoteBuildCacheServiceHandle.java

        public void close() {
            LOGGER.debug("Closing {} build cache", role.getDisplayName());
            if (disabled) {
                LOGGER.warn("The {} build cache was disabled during the build due to errors.", role.getDisplayName());
            }
            try {
                service.close();
            } catch (Exception e) {
                if (logStackTraces) {
                    LOGGER.warn("Error closing {} build cache: ", role.getDisplayName(), e);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 14:27:21 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/file/FileTreeElement.java

         */
        InputStream open();
    
        /**
         * Copies the content of this file to an output stream. Generally, calling this method is more performant than
         * calling {@code new FileInputStream(getFile())}.
         *
         * @param output The output stream to write to. The caller is responsible for closing this stream.
         */
        void copyTo(OutputStream output);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:43:13 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top