Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,250 for clean (0.09 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnectionPool.kt

       *
       * This confirms the returned connection is healthy before returning it. If this encounters any
       * unhealthy connections in its search, this will clean them up.
       *
       * If [routes] is non-null these are the resolved routes (ie. IP addresses) for the connection.
       * This is used to coalesce related domains to the same HTTP/2 connection, such as `square.com`
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. cmd/utils.go

    			newMeta[strings.TrimPrefix(k, "X-Amz-Meta-")] = v
    		} else {
    			newMeta[k] = v
    		}
    	}
    	return newMeta
    }
    
    // pathClean is like path.Clean but does not return "." for
    // empty inputs, instead returns "empty" as is.
    func pathClean(p string) string {
    	cp := path.Clean(p)
    	if cp == "." {
    		return ""
    	}
    	return cp
    }
    
    func trimLeadingSlash(ep string) string {
    	if len(ep) > 0 && ep[0] == '/' {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelMultiProjectIntegrationTest.groovy

            installation('exe/build/install/main/debug').assertInstalled()
        }
    
        @Requires(IntegTestPreconditions.HasMsBuild)
        @ToBeFixedForConfigurationCache
        def "can clean from visual studio with dependencies"() {
            useMsbuildTool()
            def debugBinary = executable('exe/build/exe/main/debug/main')
    
            given:
            app.executable.writeSources(file("exe/src/main"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26K bytes
    - Viewed (0)
  4. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/checkstyle/CheckstylePluginVersionIntegrationTest.groovy

        }
    
        @Issue("https://github.com/gradle/gradle/issues/2326")
        def "check task should not be up-to-date after clean if it only outputs to console"() {
            given:
            defaultLanguage('en')
            writeConfigFileWithWarnings()
            badCode()
            buildFile << """
                tasks.withType(Checkstyle) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  5. src/debug/buildinfo/buildinfo_test.go

    								}
    							} else {
    								if tc.wantErr != "" {
    									t.Fatalf("unexpected success; want error containing %q", tc.wantErr)
    								}
    								got := info.String()
    								if clean := cleanOutputForComparison(got); got != tc.want && clean != tc.want {
    									t.Fatalf("got:\n%s\nwant:\n%s", got, tc.want)
    								}
    							}
    						})
    					}
    				})
    			}
    		})
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  6. pkg/kubelet/logs/container_log_manager_test.go

    	assert.Equal(t, testLogs[2]+"."+timestamp, logs[3].Name())
    	assert.Equal(t, testLogs[3], logs[4].Name())
    }
    
    func TestClean(t *testing.T) {
    	ctx := context.Background()
    	dir, err := os.MkdirTemp("", "test-clean")
    	require.NoError(t, err)
    	defer os.RemoveAll(dir)
    
    	const (
    		testMaxFiles = 3
    		testMaxSize  = 10
    	)
    	now := time.Now()
    	f := critest.NewFakeRuntimeService()
    	c := &containerLogManager{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. cmd/object-api-utils.go

    		}
    	}
    	s3MD5 := fmt.Sprintf("%s-%d", getMD5Hash(finalMD5Bytes), len(parts))
    	return s3MD5
    }
    
    // Clean unwanted fields from metadata
    func cleanMetadata(metadata map[string]string) map[string]string {
    	// Remove STANDARD StorageClass
    	metadata = removeStandardStorageClass(metadata)
    	// Clean meta etag keys 'md5Sum', 'etag', "expires", "x-amz-tagging".
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    // LoadEncryptionConfig parses and validates the encryption config specified by filepath.
    // It may launch multiple go routines whose lifecycle is controlled by ctx.
    // In case of an error, the caller is responsible for canceling ctx to clean up any go routines that may have been launched.
    // If reload is true, or KMS v2 plugins are used with no KMS v1 plugins, the returned slice of health checkers will always be of length 1.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/operations/DefaultBuildOperationQueue.java

                lock.unlock();
            }
        }
    
        private void waitForWorkToComplete() {
            lock.lock();
            try {
                if (pendingOperations == 0) {
                    // All work is finished, clean up
                    markFinished();
                    return;
                }
            } finally {
                lock.unlock();
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 31 15:18:20 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/walk/order.go

    		o.out = append(o.out, n)
    		o.popTemp(t)
    
    	// Clean temporaries from condition evaluation at
    	// beginning of loop body and after for statement.
    	case ir.OFOR:
    		n := n.(*ir.ForStmt)
    		t := o.markTemp()
    		n.Cond = o.exprInPlace(n.Cond)
    		orderBlock(&n.Body, o.free)
    		n.Post = orderStmtInPlace(n.Post, o.free)
    		o.out = append(o.out, n)
    		o.popTemp(t)
    
    	// Clean temporaries from condition at
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
Back to top