Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,352 for notC (0.04 sec)

  1. pkg/workloadapi/workload.proto

      // Typically, this is not set and per-workload identity is used to verify
      // TODO: support this field
      repeated string subject_alt_names = 6;
      // Waypoint is the waypoint proxy for this service. When set, all incoming requests must go
      // through the waypoint.
      GatewayAddress waypoint = 7;
    
      // Load balancing policy for selecting endpoints.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. src/crypto/ecdsa/ecdsa.go

    }
    
    // Equal reports whether pub and x have the same value.
    //
    // Two keys are only considered to have the same value if they have the same Curve value.
    // Note that for example [elliptic.P256] and elliptic.P256().Params() are different
    // values, as the latter is a generic not constant time implementation.
    func (pub *PublicKey) Equal(x crypto.PublicKey) bool {
    	xx, ok := x.(*PublicKey)
    	if !ok {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  3. src/runtime/stack.go

    		return
    	}
    	avg := scannedStackSize/scannedStacks + stackGuard
    	// Note: we add stackGuard to ensure that a goroutine that
    	// uses the average space will not trigger a growth.
    	if avg > uint64(maxstacksize) {
    		avg = uint64(maxstacksize)
    	}
    	if avg < fixedStack {
    		avg = fixedStack
    	}
    	// Note: maxstacksize fits in 30 bits, so avg also does.
    	startingStackSize = uint32(round2(int32(avg)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  4. cluster/gce/upgrade.sh

      parse-master-env
      upgrade-master-env
    
      # Delete the master instance. Note that the master-pd is created
      # with auto-delete=no, so it should not be deleted.
      gcloud compute instances delete \
        --project "${PROJECT}" \
        --quiet \
        --zone "${ZONE}" \
        "${MASTER_NAME}"
    
      create-master-instance "${MASTER_NAME}-ip"
      wait-for-master
    }
    
    function upgrade-master-env() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. src/go/types/typestring.go

    			if w.qf == nil && w.pkgInfo && !isExported(f.name) {
    				// note for embedded types, type name is field name, and "string" etc are lower case hence unexported.
    				pkgAnnotate = true
    				w.pkgInfo = false // only tag once
    			}
    
    			// This doesn't do the right thing for embedded type
    			// aliases where we should print the alias name, not
    			// the aliased type (see go.dev/issue/44410).
    			if !f.embedded {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

                description,
                cls,
                explicitTestNames.get(0),
                cls.getName());
        return new AssertionError(message, e);
      }
    
      /**
       * Finds the classes not ending with a test suffix and not covered by an explicit test whose name
       * is {@code explicitTestNames}.
       */
      @VisibleForTesting
      List<Class<?>> findClassesToTest(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/rsc.io/markdown/inline.go

    			if link, ok := p.links[normalizeLabel(label)]; ok {
    				return &Link{URL: link.URL, Title: link.Title, corner: link.corner}, i, true
    			}
    			// Note: Could break here, but CommonMark dingus does not
    			// fall back to trying Text for [Text][Label] when Label is unknown.
    			// Unclear from spec what the correct answer is.
    			return nil, 0, false
    		}
    	}
    
    	// Collapsed or shortcut reference link: [Text][] or [Text].
    	end := i + 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  8. pilot/pkg/model/gateway.go

    	// These are considered "verified", since there is mutually agreement from the pod, Secret, and Gateway, as all
    	// reside in the same namespace and trust boundary.
    	// Note: Secrets that are not referenced by any Gateway, but are in the same namespace as the pod, are explicitly *not*
    	// included. This ensures we don't give permission to unexpected secrets, such as the citadel root key/cert.
    	VerifiedCertificateReferences sets.String
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  9. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/SocketConnection.java

                throw new RecoverableMessageIOException(String.format("Could not read message from '%s'.", remoteAddress), e);
            } catch (ClassNotFoundException e) {
                throw new RecoverableMessageIOException(String.format("Could not read message from '%s'.", remoteAddress), e);
            } catch (IOException e) {
                throw new RecoverableMessageIOException(String.format("Could not read message from '%s'.", remoteAddress), e);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/capture/run.go

    				// such as: app -> istio dns server -> dnsmasq -> upstream
    				// This ensures that we do not get requests from dnsmasq sent back to the agent dns server in a loop.
    				// Note: If a user somehow configured etc/resolv.conf to point to dnsmasq and server X, and dnsmasq also
    				// pointed to server X, this would not work. However, the assumption is that is not a common case.
    				cfg.ruleBuilder.AppendRuleV4(iptableslog.UndefinedCommand,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
Back to top