Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 37 for NOR (0.61 sec)

  1. src/os/exec/exec.go

    // using an implicit or explicit path entry relative to the current directory.
    // That is, if you run [LookPath]("go"), it will not successfully return
    // ./go on Unix nor .\go.exe on Windows, no matter how the path is configured.
    // Instead, if the usual path algorithms would result in that answer,
    // these functions return an error err satisfying [errors.Is](err, [ErrDot]).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.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/math/big/float.go

    		case xm < ym:
    			return -1
    		case xm > ym:
    			return +1
    		}
    	}
    
    	return 0
    }
    
    // Handling of sign bit as defined by IEEE 754-2008, section 6.3:
    //
    // When neither the inputs nor result are NaN, the sign of a product or
    // quotient is the exclusive OR of the operands’ signs; the sign of a sum,
    // or of a difference x−y regarded as a sum x+(−y), differs from at most
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    //   [DONE] Lack of tests originally - added TestDeleteWithSuggestion.
    // - https://github.com/kubernetes/kubernetes/pull/40664
    //   [DONE] Irrelevant for delete, as Delete doesn't write data (nor compare it).
    // - https://github.com/kubernetes/kubernetes/pull/47703
    //   [DONE] Irrelevant for delete, because Delete doesn't persist data.
    // - https://github.com/kubernetes/kubernetes/pull/48394/
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  7. doc/go_spec.html

    <a href="#Method_declarations">methods</a> declared with receiver type <code>T</code>.
    </li>
    
    <li>
    The method set of a pointer to a defined type <code>T</code>
    (where <code>T</code> is neither a pointer nor an interface)
    is the set of all methods declared with receiver <code>*T</code> or <code>T</code>.
    </li>
    
    <li>The method set of an <a href="#Interface_types">interface type</a> is the intersection
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top