Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 232 for Option (0.09 sec)

  1. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    type OPTResource struct {
    	Options []Option
    }
    
    // An Option represents a DNS message option within OPTResource.
    //
    // The message option is part of the extension mechanisms for DNS as
    // defined in RFC 6891.
    type Option struct {
    	Code uint16 // option code
    	Data []byte
    }
    
    // GoString implements fmt.GoStringer.GoString.
    func (o *Option) GoString() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  2. .bazelrc

    # This file tries to group and simplify build options for TensorFlow
    #
    # ----CONFIG OPTIONS----
    # Android options:
    #    android:
    #    android_arm:
    #    android_arm64:
    #    android_x86:
    #    android_x86_64:
    #
    # iOS options:
    #     ios:
    #     ios_armv7:
    #     ios_arm64:
    #     ios_x86_64:
    #     ios_fat:
    #
    # Macosx options
    #     darwin_arm64:
    #
    # Compiler options:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. hack/local-up-cluster.sh

      if [[ -z "${apiserver_path}" ]]; then
        return
      fi
      echo -n "$(dirname "${apiserver_path}")"
    }
    
    ### Allow user to supply the source directory.
    GO_OUT=${GO_OUT:-}
    while getopts "ho:O" OPTION
    do
        case ${OPTION} in
            o)
                echo "skipping build"
                GO_OUT="${OPTARG}"
                echo "using source ${GO_OUT}"
                ;;
            O)
                GO_OUT=$(guess_built_binary_path)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/jquery-3.6.3.min.js

    e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||E.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(E.cssNumber[n]?"":"px")},cur:function(){var e=et.propHooks[this.prop];return e&&e.get?e.get(this):et.propHooks._default.get(this)},run:function(e){var t,n=et.propHooks[this.prop];return this.options.duration?this.pos=t=E.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.opt...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 87.8K bytes
    - Viewed (0)
  5. src/html/template/exec_test.go

    	}
    	// Same if we set the option explicitly to the default.
    	tmpl.Option("missingkey=default")
    	b.Reset()
    	err = tmpl.Execute(&b, data)
    	if err != nil {
    		t.Fatal("default:", err)
    	}
    	got = b.String()
    	if got != want {
    		t.Errorf("got %q; expected %q", got, want)
    	}
    	// Next we ask for a zero value
    	tmpl.Option("missingkey=zero")
    	b.Reset()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/decode.go

    }
    
    func handle_MemExtend(x uint32, mult uint8, absent bool) Arg {
    	var extend ExtShift
    	var Rm Reg
    	option := (x >> 13) & (1<<3 - 1)
    	Rn := RegSP(X0) + RegSP(x>>5&(1<<5-1))
    	if (option & 1) != 0 {
    		Rm = Reg(X0) + Reg(x>>16&(1<<5-1))
    	} else {
    		Rm = Reg(W0) + Reg(x>>16&(1<<5-1))
    	}
    	switch option {
    	default:
    		return nil
    	case 2:
    		extend = uxtw
    	case 3:
    		extend = lsl
    	case 6:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 76.9K bytes
    - Viewed (0)
  7. pkg/ctrlz/assets/static/js/jquery-3.2.1.slim.min.js

    ja=/^(?:checkbox|radio)$/i,ka=/<([a-z][^\/\0>\x20\t\r\n\f]+)/i,la=/^$|\/(?:java|ecma)script/i,ma={option:[1,"<select multiple='multiple'>","</select>"],thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};ma.optgroup=ma.option,ma.tbody=ma.tfoot=ma.colgroup=ma.caption=ma.thead,ma.th=ma.td;function na(a,b){var c;return c="undefined"!=typeof a.getElementsByTagNa...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 68K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    include::{snippetsPath}/native-binaries/cunit/tests/buildDependentComponentsReport.out[]
    ----
    
    Furthermore, the `--non-binaries` option shows non-buildable binaries in the report, `--no-non-buildable` hides them.
    Similarly, the `--test-suites` option shows test suites and `--no-test-suites` hides them.
    The option `--no-all` hides both non-buildable binaries and test suites from the report.
    
    [[sec:assemble_dependents]]
    === Assembling dependents
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  9. src/main/webapp/js/jquery-3.6.3.min.js

    e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||E.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(E.cssNumber[n]?"":"px")},cur:function(){var e=et.propHooks[this.prop];return e&&e.get?e.get(this):et.propHooks._default.get(this)},run:function(e){var t,n=et.propHooks[this.prop];return this.options.duration?this.pos=t=E.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.opt...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 87.8K bytes
    - Viewed (0)
  10. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // Controls whether the WebhookConfiguration resource(s) should be created. The current behavior
      // of Istiod is to manage its own webhook configurations.
      // When this option is set to true, Istio Operator, instead of webhooks, manages the
      // webhook configurations. When this option is set as false, webhooks manage their
      // own webhook configurations.
      google.protobuf.BoolValue operatorManageWebhooks = 41;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
Back to top