Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 67 for startm (0.18 sec)

  1. pkg/proxy/iptables/proxier_test.go

    	}
    
    	// Any rule that checks for past state/history does not match
    	if rule.AffinityCheck != nil || rule.MarkCheck != nil || rule.CTStateCheck != nil {
    		return false
    	}
    
    	// Anything else is assumed to match
    	return true
    }
    
    // runChain runs the given packet through the rules in the given table and chain, updating
    // tracer's internal state accordingly. It returns true if it hits a terminal action.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    d, reflect.Method); } org/junit/internal/Throwables$State.class package org.junit.internal; abstract synchronized enum Throwables$State { public static final Throwables$State PROCESSING_OTHER_CODE; public static final Throwables$State PROCESSING_TEST_FRAMEWORK_CODE; public static final Throwables$State PROCESSING_REFLECTION_CODE; public static final Throwables$State DONE; public static Throwables$State[] values(); public static Throwables$State valueOf(String); private void Throwables$State(String,...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
  3. ChangeLog.md

    - [`KT-54443`](https://youtrack.jetbrains.com/issue/KT-54443) Smart cast to non-null after safe-call in require
    - [`KT-25747`](https://youtrack.jetbrains.com/issue/KT-25747) DFA variables: propagate smart cast results from local variables
    - [`KT-22997`](https://youtrack.jetbrains.com/issue/KT-22997) Smart-cast should merge is-check for non-nullable type and a null check to a nullable type
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    interpreted as \"data at least as new as the provided `resourceVersion`\"\n  and the bookmark event is send when the state is synced\n  to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n  If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n  bookmark event is send when the state is synced at least to the moment\n  when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n  Invalid error is returned.\n\nDefaults...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  5. api/go1.16.txt

    pkg syscall (darwin-arm64), const CS8 ideal-int
    pkg syscall (darwin-arm64), const CSIZE = 768
    pkg syscall (darwin-arm64), const CSIZE ideal-int
    pkg syscall (darwin-arm64), const CSTART = 17
    pkg syscall (darwin-arm64), const CSTART ideal-int
    pkg syscall (darwin-arm64), const CSTATUS = 20
    pkg syscall (darwin-arm64), const CSTATUS ideal-int
    pkg syscall (darwin-arm64), const CSTOP = 19
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  6. pkg/apis/core/validation/validation.go

    		// Skip any container that is not terminated
    		if oldStatus.State.Terminated == nil {
    			continue
    		}
    		// Skip any container that failed but is allowed to restart
    		if oldStatus.State.Terminated.ExitCode != 0 && restartPolicy == core.RestartPolicyOnFailure {
    			continue
    		}
    		for _, newStatus := range newStatuses {
    			if oldStatus.Name == newStatus.Name && newStatus.State.Terminated == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.25.md

    ### Bug or Regression
    
    - Fix missing delete events on informer re-lists to ensure all delete events are correctly emitted and using the latest known object state, so that all event handlers and stores always reflect the actual apiserver state as best as possible ([#115900](https://github.com/kubernetes/kubernetes/pull/115900), [@odinuge](https://github.com/odinuge)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/unicode/norm/tables12.0.0.go

    		}
    		return t.lookupValue(uint32(i), c3), 4
    	}
    	// Illegal rune
    	return 0, 1
    }
    
    // lookupUnsafe returns the trie value for the first UTF-8 encoding in s.
    // s must start with a full and valid UTF-8 encoded rune.
    func (t *nfcTrie) lookupUnsafe(s []byte) uint16 {
    	c0 := s[0]
    	if c0 < 0x80 { // is ASCII
    		return nfcValues[c0]
    	}
    	i := nfcIndex[c0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 376.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/unicode/norm/tables9.0.0.go

    		}
    		return t.lookupValue(uint32(i), c3), 4
    	}
    	// Illegal rune
    	return 0, 1
    }
    
    // lookupUnsafe returns the trie value for the first UTF-8 encoding in s.
    // s must start with a full and valid UTF-8 encoded rune.
    func (t *nfcTrie) lookupUnsafe(s []byte) uint16 {
    	c0 := s[0]
    	if c0 < 0x80 { // is ASCII
    		return nfcValues[c0]
    	}
    	i := nfcIndex[c0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 372.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/unicode/norm/tables11.0.0.go

    		}
    		return t.lookupValue(uint32(i), c3), 4
    	}
    	// Illegal rune
    	return 0, 1
    }
    
    // lookupUnsafe returns the trie value for the first UTF-8 encoding in s.
    // s must start with a full and valid UTF-8 encoded rune.
    func (t *nfcTrie) lookupUnsafe(s []byte) uint16 {
    	c0 := s[0]
    	if c0 < 0x80 { // is ASCII
    		return nfcValues[c0]
    	}
    	i := nfcIndex[c0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 376.2K bytes
    - Viewed (0)
Back to top