Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 156 for susp (0.36 sec)

  1. test/ken/embed.go

    type S struct {
    	a1 int
    	Sub
    	*Subp
    	a int
    }
    
    func (p *S) test1() int {
    	if p.a != p.a1 {
    		println("SubpSub", p, p.a1)
    		panic("fail")
    	}
    	return p.a
    }
    
    /******
     ******
     ******/
    
    func main() {
    	var i I
    	var s *S
    
    	// allocate
    	s = new(S)
    	s.Subp = new(Subp)
    	s.Sub.SubSubp = new(SubSubp)
    	s.Subp.SubpSubp = new(SubpSubp)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 03 17:03:15 UTC 2016
    - 4.3K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testplugin/testdata/host/host.go

    	}
    	subp, err := plugin.Open(subpPath)
    	if err != nil {
    		log.Fatalf("plugin.Open(%q) failed: %v", subpPath, err)
    	}
    
    	funcVar, err := subp.Lookup("FuncVar")
    	if err != nil {
    		log.Fatalf(`sub/plugin1.Lookup("FuncVar") failed: %v`, err)
    	}
    	called := false
    	*funcVar.(*func()) = func() {
    		called = true
    	}
    
    	readFunc, err = subp.Lookup("ReadCommonX")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. src/packaging/common/scripts/prerm

        elif [ -x /etc/init.d/fess ]; then
            if command -v invoke-rc.d >/dev/null; then
                invoke-rc.d fess stop || true
            else
                /etc/init.d/fess stop || true
            fi
    
        # older suse linux distributions do not ship with systemd
        # but do not have an /etc/init.d/ directory
        # this tries to start the fess service on these
        # as well without failing this script
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 29 07:34:32 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/testing/EqualsTester.java

     * follows:
     *
     * <ul>
     *   <li>"{@code [group }<i>i</i>{@code , item }<i>j</i>{@code ]}" refers to the
     *       <i>j</i><sup>th</sup> item in the <i>i</i><sup>th</sup> equality group, where both equality
     *       groups and the items within equality groups are numbered starting from 1. When either a
     *       constructor argument or an equal object is provided, that becomes group 1.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:11:50 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/testing/EqualsTester.java

     * follows:
     *
     * <ul>
     *   <li>"{@code [group }<i>i</i>{@code , item }<i>j</i>{@code ]}" refers to the
     *       <i>j</i><sup>th</sup> item in the <i>i</i><sup>th</sup> equality group, where both equality
     *       groups and the items within equality groups are numbered starting from 1. When either a
     *       constructor argument or an equal object is provided, that becomes group 1.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:11:50 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. LICENSES/vendor/github.com/cyphar/filepath-securejoin/LICENSE

    = vendor/github.com/cyphar/filepath-securejoin licensed under: =
    
    Copyright (C) 2014-2015 Docker Inc & Go Authors. All rights reserved.
    Copyright (C) 2017 SUSE LLC. All rights reserved.
    
    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are
    met:
    
       * Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 08 04:49:00 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/labels/selector_test.go

    		{"(", nil, false, false},              // opar
    	}
    
    	for _, ssp := range setSelectorParserTests {
    		if sel, err := Parse(ssp.In); err != nil && ssp.Valid {
    			t.Errorf("Parse(%s) => %v expected no error", ssp.In, err)
    		} else if err == nil && !ssp.Valid {
    			t.Errorf("Parse(%s) => %+v expected error", ssp.In, sel)
    		} else if ssp.Match && !reflect.DeepEqual(sel, ssp.Out) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 14 16:39:04 UTC 2022
    - 29.9K bytes
    - Viewed (0)
  8. releasenotes/notes/crl_support.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    docs:
      - https://docs.google.com/document/d/13LNbJnLHe_prlOg7sPr77PjLiIuGj452/edit?usp=sharing&ouid=105743966233121608166&rtpof=true&sd=true
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 20:21:48 UTC 2023
    - 308 bytes
    - Viewed (0)
  9. licenses/github.com/cyphar/filepath-securejoin/LICENSE

    Copyright (C) 2014-2015 Docker Inc & Go Authors. All rights reserved.
    Copyright (C) 2017 SUSE LLC. All rights reserved.
    
    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are
    met:
    
       * Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
       * Redistributions in binary form must reproduce the above
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Oct 26 02:47:39 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  10. docs/es/docs/deployment/index.md

    Para una **API web**, normalmente implica ponerla en una **máquina remota**, con un **programa de servidor** que proporcione un buen rendimiento, estabilidad, etc, para que sus **usuarios** puedan **acceder** a la aplicación de manera eficiente y sin interrupciones o problemas.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Feb 07 11:55:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top