Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 378 for striped (0.27 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/openapi/openapi_test.go

    	}
    	if !equal {
    		t.Errorf("%v != %v", expected, actual)
    	}
    }
    
    func TestGetDefinitionName(t *testing.T) {
    	testType := openapitesting.TestType{}
    	// in production, the name is stripped of ".*vendor/" prefix before passed
    	// to GetDefinitionName, so here typePkgName does not have the
    	// "k8s.io/kubernetes/vendor" prefix.
    	typePkgName := "k8s.io/apiserver/pkg/endpoints/openapi/testing.TestType"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 29 06:38:01 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonStopState.java

    package org.gradle.launcher.daemon.server;
    
    /**
     * Indicates the state of the daemon when it stops doing work.
     */
    public enum DaemonStopState {
        /**
         * Daemon was stopped cleanly and all work stopped.
         */
        Clean,
        /**
         * Daemon could not be stopped cleanly and some work may still be running.
         */
        Forced
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:45:11 UTC 2024
    - 953 bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/DaemonConnectionBackedEventConsumer.java

            }
    
            private boolean moreMessagesToSend() {
                return ableToSend && !(stopped && queue.isEmpty());
            }
    
            private Object getNextEvent() {
                try {
                    return queue.poll(10, TimeUnit.MILLISECONDS);
                } catch (InterruptedException e) {
                    stopped = true;
                    return null;
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/timeout/impl/DefaultTimeoutHandler.java

                }
            }
    
            private void onAfterTimeoutCheck() {
                synchronized (lock) {
                    if (!stopped) {
                        slowStop = true;
                        doAsPartOfBuildOperation(() -> {
                            LOGGER.warn("Timed out {} has not yet stopped.", workUnitDescription.getDisplayName());
    
                            if (logStacktraceTimer.hasExpired()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/locklistener/FileLockCommunicator.java

                    socket.send(packet);
                } catch (IOException e) {
                    if (!stopped) {
                        LOGGER.debug("Failed to confirm lock release to Gradle process at port {} for lock with id {}.", packet.getPort(), lockId);
                    }
                }
            }
        }
    
        public void stop() {
            stopped = true;
            socket.close();
        }
    
        public int getPort() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:49 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSingleProjectIntegrationTest.groovy

            return [":${exeName}VisualStudioProject", ":${exeName}VisualStudioFilters"]
        }
    
        private String stripped(String configurationName) {
            if (toolChain.visualCpp) {
                return ""
            } else {
                return configurationName.startsWith("release") ? "stripped/" : ""
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  7. okhttp-sse/src/main/kotlin/okhttp3/sse/internal/RealEventSource.kt

              response,
            )
            return
          }
    
          // This is a long-lived response. Cancel full-call timeouts.
          call?.timeout()?.cancel()
    
          // Replace the body with a stripped one so the callbacks can't see real data.
          val response = response.stripBody()
    
          val reader = ServerSentEventReader(body.source(), this)
          try {
            if (!canceled) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/MethodStubbingApiMemberAdapter.java

     * implementations and replacing them with a "stub" that will throw an
     * {@link UnsupportedOperationException} if called at runtime. All members (including but
     * not limited to stripped and stubbed methods) are delegated to a {@link ClassWriter}
     * responsible for writing new API classes.
     */
    public class MethodStubbingApiMemberAdapter extends ClassVisitor {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/ExecutorFactory.java

         * Creates an executor which can run multiple actions concurrently. It is the caller's responsibility to stop the executor.
         *
         * The executor will collect failures thrown by actions and rethrow when the executor is stopped.
         *
         * @param displayName The display name for the this executor. Used for thread names, logging and error message.
         * @return The executor.
         */
        ManagedExecutor create(String displayName);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. docs/distributed/DESIGN.md

    Refer to the sizing guide with details on the default parity count chosen for different erasure stripe sizes [here](https://github.com/minio/minio/blob/master/docs/distributed/SIZING.md)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top