Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for NOR (0.11 sec)

  1. src/net/http/server.go

    	// that we have received the client's ACK, and at any rate we don't want to
    	// allow a misbehaving client to soak up server connections indefinitely by
    	// withholding an ACK, nor do we want to go through the complexity or overhead
    	// of using low-level APIs to figure out when a TCP round-trip has completed.
    	//
    	// Instead, we declare that we are “reasonably certain” that we received the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

            tfl::AttachErrorCode(
                inst->emitOpError("is neither a custom op nor a flex op"),
                tflite::metrics::ConverterErrorData::ERROR_NEEDS_FLEX_OPS);
          } else {
            failed_custom_ops_[op_name].insert(op_desc);
            tfl::AttachErrorCode(
                inst->emitOpError("is neither a custom op nor a flex op"),
                tflite::metrics::ConverterErrorData::ERROR_NEEDS_CUSTOM_OPS);
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    	// This is OK as long as the packages that are farther down the
    	// dependency tree turn on *more* analysis, as here.
    	// (The unsafeptr check does not write any facts for use by
    	// later vet runs, nor does unreachable.)
    	if a.Package.Goroot && !VetExplicit && VetTool == "" {
    		// Turn off -unsafeptr checks.
    		// There's too much unsafe.Pointer code
    		// that vet doesn't like in low-level packages
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_builder_test.go

    		}
    	} else if ok {
    		alpnOverride, found := istio.Fields[util.AlpnOverrideMetadataKey]
    		if found {
    			t.Errorf("alpn_override:%s tlsMode:%s, alpn_override metadata should not be written if TLS mode is neither SIMPLE nor MUTUAL",
    				alpnOverride.GetStringValue(), tlsMode)
    		}
    	}
    }
    
    func TestApplyEdsConfig(t *testing.T) {
    	cases := []struct {
    		name      string
    		cluster   *cluster.Cluster
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    	if percentage != nil {
    		if percentage.Value < 0.0 || percentage.Value > 100.0 || (percentage.Value > 0.0 && percentage.Value < 0.0001) {
    			return fmt.Errorf("percentage %v is neither 0.0, nor in range [0.0001, 100.0]", percentage.Value)
    		}
    	}
    	return nil
    }
    
    // ValidateUnixAddress validates that the string is a valid unix domain socket path.
    func ValidateUnixAddress(addr string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. cmd/object-handlers.go

    					writeErrorResponse(ctx, w, toAPIError(ctx, perr.Err), r.URL)
    					return
    				}
    				// when delete tagging is proxied, the object version/tags are not available to return
    				// as header in the response, nor ObjectInfo in the notification event.
    				w.Header()[xhttp.MinIOTaggingProxied] = []string{"true"}
    				writeSuccessNoContent(w)
    				sendEvent(eventArgs{
    					EventName:    event.ObjectCreatedDeleteTagging,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  7. cluster/gce/util.sh

    clusterDNS:
      - ${quoted_dns_server_ip}
    clusterDomain: ${quoted_dns_domain}
    readOnlyPort: 10255
    EOF
    
      # Note: ENABLE_MANIFEST_URL is used by GKE.
      # TODO(mtaufen): remove this since it's not used in kubernetes/kubernetes nor
      # kubernetes/test-infra.
      if [[ "${ENABLE_MANIFEST_URL:-}" == "true" ]]; then
        declare quoted_manifest_url
        quoted_manifest_url=$(yaml-quote "${MANIFEST_URL}")
        cat <<EOF
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    //
    // When telemetry is in local mode, counter data is written to the local file
    // system, but will not be uploaded to remote servers.
    //
    // When telemetry is off, local counter data is neither collected nor uploaded.
    //
    // When telemetry is on, telemetry data is written to the local file system
    // and periodically sent to https://telemetry.go.dev/. Uploaded data is used to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top