Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 91 for ARE (0.09 sec)

  1. src/crypto/x509/verify_test.go

    		errorCallback: expectHashError,
    	},
    	// EKULeaf tests use an unconstrained chain leading to a leaf certificate
    	// with an E-mail Protection EKU but not a Server Auth one, checking that
    	// the EKUs on the leaf are enforced.
    	{
    		name:          "EKULeaf",
    		leaf:          smimeLeaf,
    		intermediates: []string{smimeIntermediate},
    		roots:         []string{smimeRoot},
    		currentTime:   1594673418,
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  2. src/database/sql/sql_test.go

    			// print before panic, as panic may get lost due to conflicting panic
    			// (all goroutines asleep) elsewhere, since we might not unlock
    			// the mutex in freeConn here.
    			println("double free of conn. conflicts are:\nA) " + getFreedFrom(dbConn{db, c}) + "\n\nand\nB) " + stack())
    			panic("double free of conn.")
    		}
    		setFreedFrom(dbConn{db, c}, stack())
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. pkg/scheduler/schedule_one_test.go

    					},
    					UnschedulablePlugins: sets.Set[string]{},
    					PreFilterMsg:         "node(s) didn't satisfy plugin FakePreFilter2",
    				},
    			},
    		},
    		{
    			name: "test some nodes are filtered out by prefilter plugin and other are filtered out by filter plugin",
    			registerPlugins: []tf.RegisterPluginFunc{
    				tf.RegisterQueueSortPlugin(queuesort.Name, queuesort.New),
    				tf.RegisterPreFilterPlugin(
    					"FakePreFilter",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/runtime/framework_test.go

    				},
    			},
    			wantPreFilterResult: nil,
    			wantStatusCode:      framework.UnschedulableAndUnresolvable,
    		},
    		{
    			name: "all nodes are filtered out by prefilter result, but other plugins aren't executed because we consider all nodes are filtered out by UnschedulableAndUnresolvable",
    			plugins: []*TestPlugin{
    				{
    					name: "reject-all-nodes",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  5. src/debug/elf/elf.go

     * Copyright (c) 2001 David E. O'Brien
     * Portions Copyright 2009 The Go Authors. All rights reserved.
     *
     * Redistribution and use in source and binary forms, with or without
     * modification, are permitted provided that the following conditions
     * are met:
     * 1. Redistributions of source code must retain the above copyright
     *    notice, this list of conditions and the following disclaimer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    			w.Header().Set("Content-Type", "application/json")
    			klog.V(5).Infof("%v: returning: %+v", r.URL, *openIDConfig)
    			w.Write([]byte(*openIDConfig))
    		// These claims are tested in the unit tests.
    		case "/groups":
    			fallthrough
    		case "/rabbits":
    			if claimToResponseMap == nil {
    				t.Errorf("no claims specified in response")
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

    org:leaf:1.6+ FAILED
       Failures:
          - Could not find any matches for org:leaf:1.6+ as no versions of org:leaf are available.
    
    org:leaf:1.6+ FAILED
    \\--- org:top:1.0
         \\--- conf
    
    org:leaf:[1.5,2.0] FAILED
       Failures:
          - Could not find any matches for org:leaf:[1.5,2.0] as no versions of org:leaf are available.
            Searched in the following locations:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/asm7.go

    		// 2-byte and 1-byte aligned addresses, so the address of load/store must be aligned.
    		// Also symbols with prefix of "go:string." are Go strings, which will go into
    		// the symbol table, their addresses are not necessary aligned, rule this out.
    		align := int64(1 << sz)
    		if o.a1 == C_ADDR && p.From.Offset%align == 0 && !strings.HasPrefix(p.From.Sym.Name, "go:string.") ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  9. cmd/object-handlers_test.go

    		for _, sf := range signFns {
    			// Read whole object
    			mkGetReq(oi, "", caseNumber, sf)
    			caseNumber++
    
    			// No range requests are possible if the
    			// object length is 0
    			if objLen == 0 {
    				continue
    			}
    
    			// Various ranges to query - all are valid!
    			rangeHdrs := []string{
    				// Read first byte of object
    				fmt.Sprintf("bytes=%d-%d", 0, 0),
    				// Read second byte of object
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  10. tests/integration/pilot/common/routing.go

    						Name: "http",
    					},
    					HTTP: echo.HTTP{
    						Headers: HostHeader(h),
    					},
    					// check mTLS to ensure we are not hitting pass-through cluster
    					Check: assertion,
    				},
    			})
    		}
    	}
    }
    
    // serviceCases tests overlapping Services. There are a few cases.
    // Consider we have our base service B, with service port P and target port T
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
Back to top