Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for xspf (0.09 sec)

  1. src/net/lookup_windows_test.go

    	var r string
    	if r, err = nslookup("txt", name); err != nil {
    		return
    	}
    	txt = make([]string, 0, 10)
    	// linux
    	// golang.org      text = "v=spf1 redirect=_spf.google.com"
    
    	// windows
    	// golang.org      text =
    	//
    	//    "v=spf1 redirect=_spf.google.com"
    	rx := regexp.MustCompile(`(?m)^([a-z0-9.\-]+)\s+text\s*=\s*"(.*)"$`)
    	for _, ans := range rx.FindAllStringSubmatch(r, -1) {
    		txt = append(txt, ans[2])
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. src/runtime/heapdump.go

    			// Finalizers
    			for sp := s.specials; sp != nil; sp = sp.next {
    				if sp.kind != _KindSpecialFinalizer {
    					continue
    				}
    				spf := (*specialfinalizer)(unsafe.Pointer(sp))
    				p := unsafe.Pointer(s.base() + uintptr(spf.special.offset))
    				dumpfinalizer(p, spf.fn, spf.fint, spf.ot)
    			}
    		}
    	}
    
    	// Finalizer queue
    	iterate_finq(finq_callback)
    }
    
    // Bit vector of free marks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. schema/naming.go

    	commonInitialismsReplacer *strings.Replacer
    )
    
    func init() {
    	commonInitialismsForReplacer := make([]string, 0, len(commonInitialisms))
    	for _, initialism := range commonInitialisms {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFileHelper.groovy

            unzip.execute()
        }
    
        void untarTo(File target, boolean nativeTools) {
            if (nativeTools && !isWindows()) {
                target.mkdirs()
                def builder = new ProcessBuilder(['tar', '-xpf', file.absolutePath])
                builder.directory(target)
                def process = builder.start()
                process.consumeProcessOutput()
                assertThat(process.waitFor(), equalTo(0))
                return
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. src/runtime/mgcmark.go

    				case _KindSpecialFinalizer:
    					// don't mark finalized object, but scan it so we
    					// retain everything it points to.
    					spf := (*specialfinalizer)(unsafe.Pointer(sp))
    					// A finalizer can be set for an inner byte of an object, find object beginning.
    					p := s.base() + uintptr(spf.special.offset)/s.elemsize*s.elemsize
    
    					// Mark everything that can be reached from
    					// the object (but *not* the object itself or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  6. src/net/lookup_test.go

    				t.Errorf("got %v; want a record containing %s", ns, tt.host)
    			}
    		}
    	}
    }
    
    var lookupGmailTXTTests = []struct {
    	name, txt, host string
    }{
    	{"gmail.com", "spf", "google.com"},
    	{"gmail.com.", "spf", "google.com"},
    }
    
    func TestLookupGmailTXT(t *testing.T) {
    	if runtime.GOOS == "plan9" {
    		t.Skip("skipping on plan9; see https://golang.org/issue/29722")
    	}
    	t.Parallel()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
Back to top