Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 200 for pats (0.21 sec)

  1. pkg/apis/batch/validation/validation.go

    	}
    	if status.UncountedTerminatedPods != nil {
    		path := fldPath.Child("uncountedTerminatedPods")
    		seen := sets.New[types.UID]()
    		for i, k := range status.UncountedTerminatedPods.Succeeded {
    			p := path.Child("succeeded").Index(i)
    			if k == "" {
    				allErrs = append(allErrs, field.Invalid(p, k, "must not be empty"))
    			} else if seen.Has(k) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  2. src/os/os_test.go

    	// Create new temporary directory and arrange to clean it up.
    	path := t.TempDir()
    
    	// Stat of path should succeed.
    	if _, err := Stat(path); err != nil {
    		t.Fatalf("stat %s failed: %s", path, err)
    	}
    
    	// Stat of path+"/" should succeed too.
    	path += "/"
    	if _, err := Stat(path); err != nil {
    		t.Fatalf("stat %s failed: %s", path, err)
    	}
    }
    
    func TestNilProcessStateString(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  3. pkg/proxy/iptables/proxier.go

    		},
    	}
    
    	burstSyncs := 2
    	logger.V(2).Info("Iptables sync params", "minSyncPeriod", minSyncPeriod, "syncPeriod", syncPeriod, "burstSyncs", burstSyncs)
    	// We pass syncPeriod to ipt.Monitor, which will call us only if it needs to.
    	// We need to pass *some* maxInterval to NewBoundedFrequencyRunner anyway though.
    	// time.Hour is arbitrary.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  4. pkg/apis/extensions/v1beta1/zz_generated.conversion.go

    	if in.Paths != nil {
    		in, out := &in.Paths, &out.Paths
    		*out = make([]networking.HTTPIngressPath, len(*in))
    		for i := range *in {
    			if err := Convert_v1beta1_HTTPIngressPath_To_networking_HTTPIngressPath(&(*in)[i], &(*out)[i], s); err != nil {
    				return err
    			}
    		}
    	} else {
    		out.Paths = nil
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 95.7K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context_test.go

    	env.Init()
    
    	// Init a new push context
    	old := NewPushContext()
    	if err := old.InitContext(env, nil, nil); err != nil {
    		t.Fatal(err)
    	}
    
    	// Create a new one, copying from the old one
    	// Pass a ConfigsUpdated otherwise we would just copy it directly
    	newPush := NewPushContext()
    	if err := newPush.InitContext(env, old, &PushRequest{
    		ConfigsUpdated: sets.Set[ConfigKey]{
    			{Kind: kind.Secret}: {},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  6. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN"
    	"http://dbflute.org/meta/lastadi10.dtd">
    <components namespace="fessCrawler">
    	<include path="crawler/container.xml" />
    
    	<component name="tikaExtractor"
    		class="org.codelibs.fess.crawler.extractor.impl.TikaExtractor">
    		<property name="maxCompressionRatio">1</property>
    		<property name="maxUncompressionSize">10000000</property>
    	</component>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    Working with files::
     * You can no longer cast `FileCollection` objects to other types using the `as` keyword or the `asType()` method.
     * You can no longer pass `null` as the configuration action of link:{javadocPath}/org/gradle/api/file/CopySpec.html#from-java.lang.Object-org.gradle.api.Action-[CopySpec.from(Object, Action)].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  8. src/internal/trace/order.go

    			// If we're passing through ProcSyscallAbandoned, then there's no promotion
    			// to do. We've lost the M that this P is associated with. However it got there,
    			// it's going to appear as idle in the API, so pass through as idle.
    			oldState = ProcIdle
    			ev.args[1] = uint64(go122.ProcSyscallAbandoned)
    		} else if s.status != status {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  9. src/runtime/mgc.go

    // then the entire ecosystem of packages with that as a dependency had to
    // explicitly update to the new version. Many packages depend on
    // assume-no-moving-gc transitively, through paths like
    // inet.af/netaddr -> go4.org/intern -> assume-no-moving-gc.
    // This was causing a significant amount of friction around each new
    // release, so we added this bool for the package to //go:linkname
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/dwarf.go

    			// filename is quite useful for debugging.
    			name = fmt.Sprintf("<missing>_%d", i)
    		}
    		// Note the use of "path" here and not "filepath". The compiler
    		// hard-codes to use "/" in DWARF paths (even for Windows), so we
    		// want to maintain that here.
    		file := path.Base(name)
    		dir := path.Dir(name)
    		dirIdx, ok := dirNums[dir]
    		if !ok && dir != "." {
    			dirIdx = len(dirNums) + 1
    			dirNums[dir] = dirIdx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top