Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 96 of 96 for Programmed (0.62 sec)

  1. src/flag/flag.go

    			}
    		}
    		fmt.Fprint(f.Output(), b.String(), "\n")
    	})
    	// If calling String on any zero flag.Values triggered a panic, print
    	// the messages after the full set of defaults so that the programmer
    	// knows to fix the panic.
    	if errs := isZeroValueErrs; len(errs) > 0 {
    		fmt.Fprintln(f.Output())
    		for _, err := range errs {
    			fmt.Fprintln(f.Output(), err)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  2. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    you use may be called something other than `show w' and `show c'; they
    could even be mouse-clicks or menu items--whatever suits your program.
    
    You should also get your employer (if you work as a programmer) or your
    school, if any, to sign a "copyright disclaimer" for the program, if
    necessary. Here is a sample; alter the names:
    
        Yoyodyne, Inc., hereby disclaims all copyright interest in the
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    func (e *Store) NamespaceScoped() bool {
    	if e.CreateStrategy != nil {
    		return e.CreateStrategy.NamespaceScoped()
    	}
    	if e.UpdateStrategy != nil {
    		return e.UpdateStrategy.NamespaceScoped()
    	}
    
    	panic("programmer error: no CRUD for resource, override NamespaceScoped too")
    }
    
    // GetCreateStrategy implements GenericStore.
    func (e *Store) GetCreateStrategy() rest.RESTCreateStrategy {
    	return e.CreateStrategy
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  4. src/cmd/go/go_test.go

    		tg.t.Errorf("wrong reason for Stale=false: %q, want %q", why, reason)
    	}
    }
    
    // If -testwork is specified, the test prints the name of the temp directory
    // and does not remove it when done, so that a programmer can
    // poke at the test file tree afterward.
    var testWork = flag.Bool("testwork", false, "")
    
    // cleanup cleans up a test that runs testgo.
    func (tg *testgoData) cleanup() {
    	tg.t.Helper()
    	if *testWork {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  5. CREDITS

    solutions will be better for different programs; see section 13 for the
    specific requirements.
    
      You should also get your employer (if you work as a programmer) or school,
    if any, to sign a "copyright disclaimer" for the program, if necessary.
    For more information on this, and how to apply and follow the GNU AGPL, see
    <https://www.gnu.org/licenses/>.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer. Annotation Type Each annotation type has its own separate page with the following sections: Annotation Type declaration Annotation Type description Required Element Summary Optional Element Summary Element Detail Enum Each enum has its own separate...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
Back to top