Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for spf (0.03 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlReader.java

        private static SAXParser createSecureParser() throws ParserConfigurationException, SAXException {
            SAXParserFactory spf = XmlFactories.newSAXParserFactory();
            spf.setFeature("http://xml.org/sax/features/namespaces", false);
            spf.setFeature("http://apache.org/xml/features/disallow-doctype-decl", true);
            return spf.newSAXParser();
        }
    
        private static class VerifiersHandler extends DefaultHandler2 {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 13:23:37 UTC 2023
    - 19.1K 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. 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