Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 206 for SELF (0.14 sec)

  1. src/runtime/netpoll.go

    	wseq    uintptr   // protects from stale write timers
    	wt      timer     // write deadline timer
    	wd      int64     // write deadline (a nanotime in the future, -1 when expired)
    	self    *pollDesc // storage for indirect interface. See (*pollDesc).makeArg.
    }
    
    // pollInfo is the bits needed by netpollcheckerr, stored atomically,
    // mostly duplicating state that is manipulated under lock in pollDesc.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    										"x-kubernetes-validations": []interface{}{
    											map[string]interface{}{
    												"rule":    "self.startsWith('k8s')",
    												"message": "strings must have k8s prefix",
    											},
    											map[string]interface{}{
    												"rule":    "len(self) % 2 == 1",
    												"message": "strings must have odd length",
    											},
    										},
    									},
    								},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  3. src/crypto/x509/x509_test.go

    	}
    
    	if cert := serialiseAndParse(t, template); len(cert.AuthorityKeyId) != 0 {
    		t.Fatalf("self-signed certificate contained default authority key id")
    	}
    
    	template.AuthorityKeyId = []byte{1, 2, 3, 4}
    	if cert := serialiseAndParse(t, template); len(cert.AuthorityKeyId) == 0 {
    		t.Fatalf("self-signed certificate erased explicit authority key id")
    	}
    }
    
    func TestNoSubjectKeyIdInCert(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  4. src/runtime/preempt.go

    //
    // 3. It's generally safe to interact with the runtime, even if we're
    // in a signal handler stopped here. For example, there are no runtime
    // locks held, so acquiring a runtime lock won't self-deadlock.
    //
    // In some cases the PC is safe for asynchronous preemption but it
    // also needs to adjust the resumption PC. The new PC is returned in
    // the second result.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/Type.java

         * This is the behavior of Maven 3.
         */
        String JAR = "jar";
    
        /**
         * Artifact type name for a fat-JAR file that can be only on the class-path.
         * The fat-JAR is a self-contained JAR and its transitive dependencies will not be resolved, if any.
         * This type is new in Maven 4.
         */
        String FATJAR = "fatjar";
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    func edgeEntropyScore(n *Node, edges EdgeMap, self int64) float64 {
    	score := float64(0)
    	total := self
    	for _, e := range edges {
    		if e.Weight > 0 {
    			total += abs64(e.Weight)
    		}
    	}
    	if total != 0 {
    		for _, e := range edges {
    			frac := float64(abs64(e.Weight)) / float64(total)
    			score += -frac * math.Log2(frac)
    		}
    		if self > 0 {
    			frac := float64(abs64(self)) / float64(total)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  7. cmd/generic-handlers.go

    		if bucket != "" && object != "" && uploadID != "" {
    			deplID, err := getDeplIDFromUpload(uploadID)
    			if err != nil {
    				h.ServeHTTP(w, r)
    				return
    			}
    			remote, self := globalSiteReplicationSys.getPeerForUpload(deplID)
    			if self {
    				h.ServeHTTP(w, r)
    				return
    			}
    			r.URL.Scheme = remote.EndpointURL.Scheme
    			r.URL.Host = remote.EndpointURL.Host
    			// Make sure we remove any existing headers before
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 01:01:15 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  8. maven-embedder/src/main/java/org/apache/maven/cli/internal/BootstrapCoreExtensionManager.java

    @Named
    public class BootstrapCoreExtensionManager {
        public static final String STRATEGY_PARENT_FIRST = "parent-first";
        public static final String STRATEGY_PLUGIN = "plugin";
        public static final String STRATEGY_SELF_FIRST = "self-first";
    
        private final Logger log = LoggerFactory.getLogger(getClass());
    
        private final DefaultPluginDependenciesResolver pluginDependenciesResolver;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. tests/integration/security/ca_custom_root/main_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // cacustomroot creates cluster with custom plugin root CA (samples/cert/ca-cert.pem)
    // instead of using the auto-generated self-signed root CA.
    package cacustomroot
    
    import (
    	"fmt"
    	"os"
    	"os/exec"
    	"path"
    	"testing"
    
    	"istio.io/api/annotation"
    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/test/echo/common"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. cmd/kube-apiserver/app/server.go

    		// stop printing usage when the command errors
    		SilenceUsage: true,
    		PersistentPreRunE: func(*cobra.Command, []string) error {
    			// silence client-go warnings.
    			// kube-apiserver loopback clients should not log self-issued warnings.
    			rest.SetDefaultWarningHandler(rest.NoWarnings{})
    			return nil
    		},
    		RunE: func(cmd *cobra.Command, args []string) error {
    			verflag.PrintAndExitIfRequested()
    			fs := cmd.Flags()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 17:44:20 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top