Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 148 for completely (0.23 sec)

  1. pilot/pkg/networking/core/route/route.go

    	serviceRegistry map[host.Name]*model.Service,
    	mostSpecificWildcardVsIndex map[host.Name]types.NamespacedName,
    ) ([]string, []*model.Service) {
    	// TODO: A further optimization would be to completely rely on the index and not do the loop below
    	// However, that requires assuming that serviceRegistry never got filtered after the
    	// egressListener was created.
    	rule := virtualService.Spec.(*networking.VirtualService)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    			return nil, fmt.Errorf("the server could not properly serve the CR schema") // validation should avoid this
    		}
    
    		if crd.Spec.PreserveUnknownFields == false {
    			// we don't own s completely, e.g. defaults are not deep-copied. So better make a copy here.
    			s = s.DeepCopy()
    
    			if err := structuraldefaulting.PruneDefaults(s); err != nil {
    				// This should never happen. If it does, it is a programming error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener.go

    	// In general, for handling conflicts we:
    	// * Turn on sniffing if its HTTP and TCP mixed
    	// * Merge filter chains
    	switch conflictType {
    	case NoConflict, AutoOverHTTP:
    		// This is a new entry (NoConflict), or completely overriding (AutoOverHTTP); add it to the map
    		listenerMap[listenerMapKey] = &outboundListenerEntry{
    			servicePort: listenerOpts.port,
    			bind:        listenerOpts.bind,
    			chains:      opts,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. src/testing/testing.go

    	// completely suspended during the call to Parallel.
    	t.checkRaces()
    
    	if t.chatty != nil {
    		t.chatty.Updatef(t.name, "=== PAUSE %s\n", t.name)
    	}
    	running.Delete(t.name)
    
    	t.signal <- true   // Release calling test.
    	<-t.parent.barrier // Wait for the parent test to complete.
    	t.context.waitParallel()
    
    	if t.chatty != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. src/runtime/traceback.go

    	// stopped nicely, and the stack walk may not be able to complete.
    	gp := u.g.ptr()
    	if u.flags&(unwindPrintErrors|unwindSilentErrors) == 0 && u.frame.sp != gp.stktopsp {
    		print("runtime: g", gp.goid, ": frame.sp=", hex(u.frame.sp), " top=", hex(gp.stktopsp), "\n")
    		print("\tstack=[", hex(gp.stack.lo), "-", hex(gp.stack.hi), "\n")
    		throw("traceback did not unwind completely")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    [source.multi-language-sample,groovy]
    .build.gradle
    ----
    include::{snippetsPath}/native-binaries/variants/groovy/build.gradle[tag=build-type-config]
    ----
    
    NOTE: At this stage, it is completely up to the build script to configure the relevant compiler/linker flags for each build type.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  7. src/crypto/tls/common.go

    		}
    	}
    
    	// supportsRSAFallback returns nil if the certificate and connection support
    	// the static RSA key exchange, and unsupported otherwise. The logic for
    	// supporting static RSA is completely disjoint from the logic for
    	// supporting signed key exchanges, so we just check it as a fallback.
    	supportsRSAFallback := func(unsupported error) error {
    		// TLS 1.3 dropped support for the static RSA key exchange.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  8. src/internal/trace/order.go

    	}
    	o.queue.push(Event{table: evt, ctx: curCtx, base: *ev})
    	return curCtx, true, nil
    }
    
    // Handle the GC mark phase.
    //
    // We have sequence numbers for both start and end because they
    // can happen on completely different threads. We want an explicit
    // partial order edge between start and end here, otherwise we're
    // relying entirely on timestamps to make sure we don't advance a
    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. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    There are pros and cons for each of the formats: the binary format is more compact and can be updated directly via GPG commands, but is completely opaque (binary).
    On the opposite, the ASCII-armored format is human-readable, can be easily updated by hand and makes it easier to do code reviews thanks to readable diffs.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

      // Ensures that To is a sub-type of From *.  This test is here only
      // for compile-time type checking, and has no overhead in an
      // optimized build at run-time, as it will be optimized away
      // completely.
      if (false) {
        const To to = NULL;
        ::testing::internal::ImplicitCast_<From*>(to);
      }
    
    #if GTEST_HAS_RTTI
      // RTTI: debug mode only!
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
Back to top