Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for notsan (0.21 sec)

  1. okhttp/src/test/java/okhttp3/ConnectionCoalescingTest.kt

        val nonsanUrl = url.newBuilder().host("nonsan.com").build()
        assertFailsWith<SSLPeerUnverifiedException> {
          execute(nonsanUrl)
        }
      }
    
      @Test
      fun skipsOnRedirectWhenNotSubjectAltName() {
        server.enqueue(
          MockResponse.Builder()
            .code(301)
            .addHeader("Location", url.newBuilder().host("nonsan.com").build())
            .build(),
        )
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness.go

    		klog.V(6).Infof("Serving RequestInfo=%#+v, user.Info=%#+v as longrunning\n", requestInfo, user)
    		h.handler.ServeHTTP(w, r)
    		return
    	}
    
    	var classification *PriorityAndFairnessClassification
    	noteFn := func(fs *flowcontrol.FlowSchema, pl *flowcontrol.PriorityLevelConfiguration, flowDistinguisher string) {
    		classification = &PriorityAndFairnessClassification{
    			FlowSchemaName:    fs.Name,
    			FlowSchemaUID:     fs.UID,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  3. src/runtime/race_ppc64le.s

    	// void __tsan_write_range(ThreadState *thr, void *addr, uintptr size, void *pc);
    	MOVD	$__tsan_write_range(SB), R8
    	BR	racecalladdr<>(SB)
    
    // Call a __tsan function from Go code.
    // R8 = tsan function address
    // R3 = *ThreadState a.k.a. g_racectx from g
    // R4 = addr passed to __tsan function
    //
    // Otherwise, setup goroutine context and invoke racecall. Other arguments already set.
    TEXT	racecalladdr<>(SB), NOSPLIT, $0-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

            // Visit the edges after sorting the components in consumer-first order
            while (!queue.isEmpty()) {
                ComponentState component = queue.peekFirst();
                if (component.getVisitState() == VisitState.NotSeen) {
                    component.setVisitState(VisitState.Visiting);
                    int pos = 0;
                    for (NodeState node : component.getNodes()) {
                        if (!node.isSelected()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

         * the model builder operate in project mode. This mode is meant for effective models that are employed during the
         * build process of a local project. Hence the effective model will support the notion of a project directory. To
         * build the model for a POM from the repository, use {@link #setModelSource(ModelSource)} in combination with a
         * {@link FileModelSource} instead.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. src/runtime/mcache.go

    	c.scanAlloc = 0
    
    	c.alloc[spc] = s
    }
    
    // allocLarge allocates a span for a large object.
    func (c *mcache) allocLarge(size uintptr, noscan bool) *mspan {
    	if size+_PageSize < size {
    		throw("out of memory")
    	}
    	npages := size >> _PageShift
    	if size&_PageMask != 0 {
    		npages++
    	}
    
    	// Deduct credit for this span allocation and sweep if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. src/internal/trace/oldtrace.go

    	case oldtrace.EvGCMarkAssistDone:
    		mappedType = go122.EvGCMarkAssistEnd
    	case oldtrace.EvUserTaskCreate:
    		mappedType = go122.EvUserTaskBegin
    		parent := ev.Args[1]
    		if parent == 0 {
    			parent = uint64(NoTask)
    		}
    		mappedArgs = timedEventArgs{ev.Args[0], parent, ev.Args[2], uint64(ev.StkID)}
    		name, _ := it.evt.strings.get(stringID(ev.Args[2]))
    		it.tasks[TaskID(ev.Args[0])] = taskState{name: name, parentID: TaskID(ev.Args[1])}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/AtomicDoubleTest.java

        1.0,
        Math.PI,
        (double) Integer.MAX_VALUE,
        (double) Long.MAX_VALUE,
        Double.MAX_VALUE,
        Double.POSITIVE_INFINITY,
        Double.NaN,
        Float.MAX_VALUE,
      };
    
      /** The notion of equality used by AtomicDouble */
      static boolean bitEquals(double x, double y) {
        return Double.doubleToRawLongBits(x) == Double.doubleToRawLongBits(y);
      }
    
      static void assertBitEquals(double x, double y) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 09 22:57:07 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  9. samples/security/spire/spire-quickstart.yaml

                                a set of values. Valid operators are In, NotIn, Exists
                                and DoesNotExist.
                              type: string
                            values:
                              description: values is an array of string values. If the
                                operator is In or NotIn, the values array must be non-empty.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  10. src/internal/trace/event.go

    	Value Value
    }
    
    // TaskID is the internal ID of a task used to disambiguate tasks (even if they
    // are of the same type).
    type TaskID uint64
    
    const (
    	// NoTask indicates the lack of a task.
    	NoTask = TaskID(^uint64(0))
    
    	// BackgroundTask is the global task that events are attached to if there was
    	// no other task in the context at the point the event was emitted.
    	BackgroundTask = TaskID(0)
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
Back to top