Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 75 for rnews (0.04 sec)

  1. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      <mime-type type="application/mxf">
        <glob pattern="*.mxf"/>
      </mime-type>
      <mime-type type="application/nasdata"/>
      <mime-type type="application/news-checkgroups"/>
      <mime-type type="application/news-groupinfo"/>
      <mime-type type="application/news-transmission"/>
      <mime-type type="application/nss"/>
      <mime-type type="application/ocsp-request"/>
      <mime-type type="application/ocsp-response"/>
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/stylesheets/userGuideHtmlCommon.xsl

    before 0 .cls-1 { fill: #02303a; } Gradle DSL Reference Community Community Home Community Forums Community Plugins Training News Newsletter Blog Twitter Develocity github Docs User Manual DSL Reference Release Notes Javadoc News Blog Newsletter Twitter Products Build Scan™ Build Cache Develocity Docs Get Help Forums GitHub Training Services Stay UP-TO-DATE on new features and news By entering your email, you agree to our Terms and Privacy Policy, including receipt of emails. You can unsubscribe at any...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 16:51:07 UTC 2023
    - 24.2K bytes
    - Viewed (0)
  3. src/internal/types/testdata/fixedbugs/issue40056.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    func _() {
    	NewS /* ERROR "cannot infer T" */ ().M()
    }
    
    type S struct {}
    
    func NewS[T any]() *S { panic(0) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 339 bytes
    - Viewed (0)
  4. .github/SECURITY.md

    Information about previous Istio vulnerabilities can be found on the
    [Security Bulletins] page.
    
    [Support Announcements]: https://istio.io/news/support/
    [Istio Security Vulnerabilities]: https://istio.io/about/security-vulnerabilities/
    [Security Bulletins]: https://istio.io/news/security/
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 12 15:17:53 UTC 2023
    - 905 bytes
    - Viewed (0)
  5. test/typeparam/sliceimp.dir/a.go

    // a separate copy for each type.
    func Append[T any](s []T, t ...T) []T {
    	lens := len(s)
    	tot := lens + len(t)
    	if tot <= cap(s) {
    		s = s[:tot]
    	} else {
    		news := make([]T, tot, tot+tot/2)
    		Copy(news, s)
    		s = news
    	}
    	Copy(s[lens:tot], t)
    	return s
    }
    
    // Copy copies values from t to s, stopping when either slice is full,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 30 01:55:58 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  6. tests/embedded_struct_test.go

    		}
    	}
    
    	// save embedded struct
    	DB.Save(&HNPost{BasePost: BasePost{Title: "news"}})
    	DB.Save(&HNPost{BasePost: BasePost{Title: "hn_news"}})
    	var news HNPost
    	if err := DB.First(&news, "title = ?", "hn_news").Error; err != nil {
    		t.Errorf("no error should happen when query with embedded struct, but got %v", err)
    	} else if news.Title != "hn_news" {
    		t.Errorf("embedded struct's value should be scanned correctly")
    	}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/version_buildvcs_bzr.txt

    stdout '^\tbuild\tvcs.time='
    stdout '^\tbuild\tvcs.modified=false$'
    rm $GOBIN/a$GOEXE
    
    # Building an earlier commit should still build clean.
    cp ../../outside/empty.txt ../NEWS
    exec bzr add ../NEWS
    exec bzr commit -m 'add NEWS'
    exec bzr update -r1
    go install
    go version -m $GOBIN/a$GOEXE
    stdout '^\tbuild\tvcs=bzr$'
    stdout '^\tbuild\tvcs.revision='
    stdout '^\tbuild\tvcs.time='
    stdout '^\tbuild\tvcs.modified=false$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 07 03:44:02 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/certs/renewal/filerenewer_test.go

    	"k8s.io/kubernetes/cmd/kubeadm/app/util/pkiutil"
    )
    
    func TestFileRenewer(t *testing.T) {
    	// creates a File renewer using a test Certificate authority
    	fr := NewFileRenewer(testCACert, testCAKey)
    
    	// renews a certificate
    	certCfg := &pkiutil.CertConfig{
    		Config: certutil.Config{
    			CommonName: "test-certs",
    			AltNames: certutil.AltNames{
    				DNSNames: []string{"test-domain.space"},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 28 04:36:54 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  9. tests/fuzz/pilot_model_fuzzer.go

    // Creates a new fuzzed ServiceInstance
    func NewSI(f *fuzz.ConsumeFuzzer) (*model.ServiceInstance, error) {
    	si := &model.ServiceInstance{}
    	err := f.GenerateStruct(si)
    	if err != nil {
    		return si, err
    	}
    	s, err := NewS(f)
    	if err != nil {
    		return si, err
    	}
    	p, err := createPort(f)
    	if err != nil {
    		return si, err
    	}
    	s.Ports = append(s.Ports, p)
    	si.ServicePort = p
    	si.Service = s
    	err = si.Validate()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 18:13:06 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    	// list, we may need to recurse into it.
    	newS := []interface{}{}
    	for _, elem := range s {
    		if recurse {
    			typedElem := elem.(map[string]interface{})
    			newElem, err := sortMergeListsByNameMap(typedElem, schema)
    			if err != nil {
    				return nil, err
    			}
    
    			newS = append(newS, newElem)
    		} else {
    			newS = append(newS, elem)
    		}
    	}
    
    	// Sort the maps.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
Back to top