Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 2,729 for ninit (0.04 sec)

  1. pkg/apis/abac/v0/register.go

    var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: "v0"}
    
    func init() {
    	// TODO: Delete this init function, abac should not have its own scheme.
    	utilruntime.Must(addKnownTypes(abac.Scheme))
    
    	utilruntime.Must(RegisterConversions(abac.Scheme))
    }
    
    var (
    	// SchemeBuilder is the scheme builder with scheme init functions to run for this API package
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 28 20:14:20 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  2. pkg/apis/abac/v1beta1/register.go

    var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: "v1beta1"}
    
    func init() {
    	// TODO: Delete this init function, abac should not have its own scheme.
    	utilruntime.Must(addKnownTypes(abac.Scheme))
    
    	utilruntime.Must(RegisterConversions(abac.Scheme))
    }
    
    var (
    	// SchemeBuilder is the scheme builder with scheme init functions to run for this API package
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 28 20:14:20 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/core-plugins/build_init_plugin.adoc

    // limitations under the License.
    
    [[build_init_plugin]]
    = Build Init Plugin
    
    
    The Build Init plugin can be used to create a new Gradle build. It supports creating brand new Gradle builds of various types as well as converting existing Apache Maven builds to Gradle.
    
    [[sec:sample_usage]]
    == Sample usage
    
    ```bash
    gradle init \
      --type java-application \
      --dsl kotlin \
      --test-framework junit-jupiter \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_init_path.txt

    env GO111MODULE=on
    
    ! go mod init .
    stderr '^go: malformed module path ".": is a local import path$'
    
    cd x
    go mod init example.com/x
    
    cd ../y
    go mod init m
    
    -- x/main.go --
    package main
    
    func main() {}
    
    -- y/main.go --
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 24 20:57:01 UTC 2021
    - 248 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    ====
    include::sample[dir="snippets/initScripts/disableCacheCleanup/kotlin",files="gradleUserHome/init.d/cache-settings.gradle.kts"]
    include::sample[dir="snippets/initScripts/disableCacheCleanup/groovy",files="gradleUserHome/init.d/cache-settings.gradle"]
    ====
    
    NOTE: Cache cleanup settings can only be configured via init scripts and should be placed under the `init.d` directory in Gradle User Home.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. test/ken/rob1.go

    type Integer struct {
    	val int
    }
    
    func (this *Integer) Init(i int) *Integer {
    	this.val = i
    	return this
    }
    
    func (this *Integer) Print() string {
    	return string(this.val + '0')
    }
    
    func main() {
    	list := new(List)
    	list.Init()
    	for i := 0; i < 10; i = i + 1 {
    		integer := new(Integer)
    		integer.Init(i)
    		list.Insert(integer)
    	}
    
    	r := list.Print()
    	if r != "9876543210" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 1.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/flatbuffer_translate.cc

        llvm::cl::location(experimental_prune_unreachable_nodes_unconditionally),
        llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    static opt<std::string> input_arrays_flag(
        "input-arrays",
        llvm::cl::desc(
            "List of input tensors, if different from the default inputs"),
        llvm::cl::init(""));
    
    // NOLINTNEXTLINE
    static opt<std::string> output_arrays_flag(
        "output-arrays",
        llvm::cl::desc(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 14 19:15:40 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. tests/upsert_test.go

    	}
    
    	DB.Where(&User{Name: "find or init"}).Assign("age", 44).FirstOrInit(&user4)
    	if user4.Name != "find or init" || user4.ID != 0 || user4.Age != 44 {
    		t.Errorf("user should be initialized with search value and assign attrs")
    	}
    
    	DB.Save(&User{Name: "find or init", Age: 33})
    	DB.Where(&User{Name: "find or init"}).Attrs("age", 44).FirstOrInit(&user5)
    	if user5.Name != "find or init" || user5.ID == 0 || user5.Age != 33 {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Sep 05 07:39:19 UTC 2022
    - 11.4K bytes
    - Viewed (0)
  9. src/packaging/common/scripts/postinst

            else
                /etc/init.d/fess restart || 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
        elif [ -x /etc/rc.d/init.d/fess ] ; then
            /etc/rc.d/init.d/fess restart || true
        fi
        echo " OK"
    fi
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 10 01:24:02 UTC 2015
    - 3.1K bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/vardecl.go

    var _, _ int = 1, 2
    var _ int = 1, 2 /* ERROR "extra init expr 2" */
    var _, _ int = 1 /* ERRORx `assignment mismatch: [1-9]+ variables but.*[1-9]+ value(s)?` */
    var _, _, _ /* ERROR "missing init expr for _" */ int = 1, 2
    
    var (
    	_, _ = 1, 2
    	_ = 1, 2 /* ERROR "extra init expr 2" */
    	_, _ = 1 /* ERRORx `assignment mismatch: [1-9]+ variables but.*[1-9]+ value(s)?` */
    	_, _, _ /* ERROR "missing init expr for _" */ = 1, 2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top