Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 261 for desc2 (0.08 sec)

  1. pkg/volume/util/util_test.go

    	}
    }
    
    func TestFsUserFrom(t *testing.T) {
    	tests := []struct {
    		desc       string
    		pod        *v1.Pod
    		wantFsUser *int64
    	}{
    		{
    			desc: "no runAsUser specified",
    			pod: &v1.Pod{
    				Spec: v1.PodSpec{},
    			},
    			wantFsUser: nil,
    		},
    		{
    			desc: "some have runAsUser specified",
    			pod: &v1.Pod{
    				Spec: v1.PodSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  2. src/sort/sort_test.go

    							mdata[i] = data[i] + i%5
    						}
    					}
    
    					desc := fmt.Sprintf("n=%d m=%d dist=%s mode=%s", n, m, dists[dist], modes[mode])
    					d := &testingData{desc: desc, t: t, data: mdata[0:n], maxswap: maxswap(n)}
    					sort(d)
    					// Uncomment if you are trying to improve the number of compares/swaps.
    					//t.Logf("%s: ncmp=%d, nswp=%d", desc, d.ncmp, d.nswap)
    
    					// If we were testing C qsort, we'd have to make a copy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:41:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/beans/factory/ParameterizedClassDescFactory.java

            if (rowClass == null) {
                return null;
            }
            final ParameterizedClassDescImpl desc = new ParameterizedClassDescImpl(rowClass);
            final Type[] parameterTypes = getGenericParameters(type);
            if (parameterTypes == null) {
                return desc;
            }
            final ParameterizedClassDesc[] parameterDescs = new ParameterizedClassDesc[parameterTypes.length];
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/build_trimpath.txt

    	}
    	check(data, "GOROOT", os.Getenv("GOROOT"))
    }
    
    func check(data []byte, desc, dir string) {
    	if dir == "" {
    		fmt.Printf("binary contains an empty %s\n", desc)
    		return
    	}
    	containsDir := bytes.Contains(data, []byte(dir))
    	containsSlashDir := bytes.Contains(data, []byte(filepath.ToSlash(dir)))
    	fmt.Printf("binary contains %s: %v\n", desc, containsDir || containsSlashDir)
    }
    -- overlay.json --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/gccgo.go

    				// forward the _cgo_flags directly to this step.
    				return "", nil
    			}
    		}
    		err := sh.run(root.Objdir, desc, nil, tools.ar(), arArgs, "x", newArchive, "_cgo_flags")
    		if err != nil {
    			return "", err
    		}
    		err = sh.run(".", desc, nil, tools.ar(), arArgs, "d", newArchive, "_cgo_flags")
    		if err != nil {
    			return "", err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaselineVersion.groovy

                sb.append(" with " + confidencePercent + "% confidence.\n")
    
                def diff = currentVersionMean - thisVersionMean
                def desc = diff > Duration.millis(0) ? "slower" : "faster"
                sb.append("Difference: ${diff.abs().format()} $desc (${toMillis(diff.abs())}), ${PrettyCalculator.percentChange(currentVersionMean, thisVersionMean)}%\n")
                sb.append(current.speedStats)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. docs/metrics/prometheus/grafana/replication/minio-replication-cluster.json

              "calcs": [],
              "displayMode": "list",
              "placement": "bottom",
              "showLegend": true
            },
            "tooltip": {
              "mode": "multi",
              "sort": "desc"
            }
          },
          "pluginVersion": "10.4.0",
          "targets": [
            {
              "datasource": {
                "type": "prometheus",
                "uid": "${DS_PROMETHEUS}"
              },
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:15:39 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationContainerTest.groovy

            configurationContainer.newConf.is(configuration)
        }
    
        def addsNewConfigurationWithClosureWhenConfiguringSelf() {
            when:
            String someDesc = 'desc1'
            configurationContainer.configure {
                newConf {
                    description = someDesc
                }
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/query/TermQueryCommandTest.java

            assertQueryBuilder("{\"timestamp\":{\"order\":\"asc\"}}", "sort:timestamp.asc");
            assertQueryBuilder("{\"timestamp\":{\"order\":\"desc\"}}", "sort:timestamp.desc");
    
            try {
                assertQueryBuilder("", "sort:xxx");
                fail();
            } catch (InvalidQueryException e) {
                // nothing
            }
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. src/cmd/fix/buildtag.go

    	"go/version"
    	"strings"
    )
    
    func init() {
    	register(buildtagFix)
    }
    
    const buildtagGoVersionCutoff = "go1.18"
    
    var buildtagFix = fix{
    	name: "buildtag",
    	date: "2021-08-25",
    	f:    buildtag,
    	desc: `Remove +build comments from modules using Go 1.18 or later`,
    }
    
    func buildtag(f *ast.File) bool {
    	if version.Compare(*goVersion, buildtagGoVersionCutoff) < 0 {
    		return false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 05:31:47 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top