Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Nl (0.03 sec)

  1. src/net/http/client_test.go

    	}
    }
    
    func removeCommonLines(a, b string) (asuffix, bsuffix string, commonLines int) {
    	for {
    		nl := strings.IndexByte(a, '\n')
    		if nl < 0 {
    			return a, b, commonLines
    		}
    		line := a[:nl+1]
    		if !strings.HasPrefix(b, line) {
    			return a, b, commonLines
    		}
    		commonLines++
    		a = a[len(line):]
    		b = b[len(line):]
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  2. platforms/software/security/src/test/resources/keyrings/valid-with-extra-metadata.keys

    pub    411063A3A0FFD119
    uid    Stian Soiland-Reyes <******@****.***>
    uid    Stian Soiland-Reyes <******@****.***>
    uid    Stian Soiland <******@****.***>
    uid    Stian Soiland-Reyes <s.soilandreyes@uva.nl>
    uid    Stian Soiland-Reyes <******@****.***>
    uid    Stian Soiland-Reyes <******@****.***>
    uid    Stian Soiland-Reyes <******@****.***>
    uid    Stian Soiland-Reyes <******@****.***>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 65.5K bytes
    - Viewed (0)
  3. src/main/resources/suggest_indices/suggest_analyzer.json

          "dutch_stop": {
            "type":       "stop",
            "stopwords":  "_dutch_"
          },
          "dutch_keywords": {
            "type":       "keyword_marker",
            "keywords_path": "${fess.dictionary.path}nl/protwords.txt"
          },
          "dutch_stemmer": {
            "type":       "stemmer",
            "language":   "dutch"
          },
          "dutch_override": {
            "type":       "stemmer_override",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 23 05:09:51 UTC 2019
    - 57.7K bytes
    - Viewed (0)
  4. src/compress/flate/testdata/huffman-rand-max.in

    �@��IϽ0�̲��,f��,�B^Om�ϳ*��*L=N��2�&e�D���p,����؇̰gj��;ng���@���`?FL;��̢�.w91Vn��p��u���������OL�*��"UΙ�_]�W�{�MP���۔�!��]Rv����w���-����.]�7)/�#l/BZjF���Ry�b['��,���.���F��b�?����C	���[�u��i#䀄C#���g��pX!�NL@���j�g.]5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 64K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/proxier.go

    		err := ipvs.Flush()
    		if err != nil {
    			logger.Error(err, "Error flushing ipvs rules")
    			encounteredError = true
    		}
    	}
    	// Delete dummy interface created by ipvs Proxier.
    	nl := NewNetLinkHandle(false)
    	err := nl.DeleteDummyDevice(defaultDummyDevice)
    	if err != nil {
    		logger.Error(err, "Error deleting dummy device created by ipvs proxier", "device", defaultDummyDevice)
    		encounteredError = true
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  6. src/cmd/internal/testdir/testdir_test.go

    	lines := strings.Split(outStr, "\n")
    	rxLine := regexp.MustCompile(fmt.Sprintf(`\((%s:\d+)\)\s+(.*)`, regexp.QuoteMeta(fn)))
    
    	for nl, line := range lines {
    		// Check if this line begins a function
    		if len(line) > 0 && line[0] != '\t' {
    			functionMarkers = append(functionMarkers, nl)
    		}
    
    		// Search if this line contains a assembly opcode (which is prefixed by the
    		// original source file/line in parenthesis)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  7. gradle/verification-metadata.xml

                <sha256 value="757eeb1c6703b81fa3bb6bc2eae7a5fe6ddac5d833b977aa1ce08979d7c2de5a" reason="Artifact is not signed"/>
             </artifact>
          </component>
          <component group="nl.jqno.equalsverifier" name="equalsverifier" version="2.1.6">
             <artifact name="equalsverifier-2.1.6.jar">
                <pgp value="2C1708EA05ADF6966C32D6454A1BAC7F1E3B89B3"/>
             </artifact>
          </component>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
Back to top