Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 68 for frag (0.11 sec)

  1. src/main/webapp/js/admin/popper.min.js.map

    operands\n  // The regex addresses values with the plus or minus sign in front (+10, -20, etc)\n  const fragments = offset.split(/(\\+|\\-)/).map(frag => frag.trim());\n\n  // Detect if the offset string contains a pair of values or a single one\n  // they could be separated by comma or space\n  const divider = fragments.indexOf(\n    find(fragments, frag => frag.search(/,|\\s/) !== -1)\n  );\n\n  if (fragments[divider] && fragments[divider].indexOf(',') === -1) {\n    console.warn(\n      'Offsets separated...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 121K bytes
    - Viewed (0)
  2. src/encoding/json/testdata/code.json.gz

    ent_label06-expected.checksum","kids":[],"cl_weight":0.003061301158710795,"touches":2,"min_t":1228781586,"max_t":1236205616,"mean_t":1232493601},{"name":"textfield-drag-into-disabled-expected.png","kids":[],"cl_weight":0.003936191797380961,"touches":3,"min_t":1228781586,"max_t":1236205616,"mean_t":1231487250},{"name":"input-text-drag-down-expected.checksum","kids":[],"cl_weight":0.003936191797380961,"touches":3,"min_t":1228781586,"max_t":1236205616,"mean_t":1231487250},{"name":"menulist-width-ch...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
  3. src/reflect/value.go

    	flagKindMask    flag = 1<<flagKindWidth - 1
    	flagStickyRO    flag = 1 << 5
    	flagEmbedRO     flag = 1 << 6
    	flagIndir       flag = 1 << 7
    	flagAddr        flag = 1 << 8
    	flagMethod      flag = 1 << 9
    	flagMethodShift      = 10
    	flagRO          flag = flagStickyRO | flagEmbedRO
    )
    
    func (f flag) kind() Kind {
    	return Kind(f & flagKindMask)
    }
    
    func (f flag) ro() flag {
    	if f&flagRO != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    // the package.
    //
    // The -i flag causes clean to remove the corresponding installed
    // archive or binary (what 'go install' would create).
    //
    // The -n flag causes clean to print the remove commands it would execute,
    // but not run them.
    //
    // The -r flag causes clean to be applied recursively to all the
    // dependencies of the packages named by the import paths.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          "dev": true,
          "dependencies": {
            "has-flag": "^4.0.0",
            "supports-color": "^7.0.0"
          },
          "engines": {
            "node": ">=14.18"
          }
        },
        "node_modules/supports-hyperlinks/node_modules/has-flag": {
          "version": "4.0.0",
          "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (1)
  6. src/cmd/go/internal/work/exec.go

    				// it's a match.
    				if bytes.HasPrefix(src[commentStart:], []byte(cgoLdflag)) {
    					// Pull out the flag, and unquote it.
    					// This is what the compiler does.
    					flag := string(src[idx+len(cgoLdflag) : end])
    					flag = strings.TrimSpace(flag)
    					flag = strings.Trim(flag, `"`)
    					flags = append(flags, flag)
    				}
    				src = src[end:]
    				idx = bytes.Index(src, []byte(cgoLdflag))
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    // absorb flag constants into conditional instructions
    (CSEL  [cc] x _ flag) && ccARM64Eval(cc, flag) > 0 => x
    (CSEL  [cc] _ y flag) && ccARM64Eval(cc, flag) < 0 => y
    (CSEL0 [cc] x   flag) && ccARM64Eval(cc, flag) > 0 => x
    (CSEL0 [cc] _   flag) && ccARM64Eval(cc, flag) < 0 => (MOVDconst [0])
    (CSNEG [cc] x _ flag) && ccARM64Eval(cc, flag) > 0 => x
    (CSNEG [cc] _ y flag) && ccARM64Eval(cc, flag) < 0 => (NEG y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.5.md

    * Important Security-related changes before upgrading
      * You *MUST* set `--anonymous-auth=false` flag on your kube-apiserver unless you are a developer testing this feature and understand it.
      If you do not, you risk allowing unauthorized users to access your apiserver.
      * You *MUST* set `--anonymous-auth=false` flag on your federation apiserver unless you are a developer testing this feature and understand it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (1)
  9. CHANGELOG/CHANGELOG-1.4.md

        * In a future release, the value of this flag will be defaulted to `true`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	CERT_STORE_PROV_LDAP_W            = 16
    	CERT_STORE_PROV_LDAP              = CERT_STORE_PROV_LDAP_W
    	CERT_STORE_PROV_PKCS12            = 17
    
    	/* store characteristics (low WORD of flag) for CertOpenStore function */
    	CERT_STORE_NO_CRYPT_RELEASE_FLAG            = 0x00000001
    	CERT_STORE_SET_LOCALIZED_NAME_FLAG          = 0x00000002
    	CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG = 0x00000004
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
Back to top