Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,265 for Calling (0.13 sec)

  1. pkg/apis/networking/fuzzer/fuzzer.go

    			c.FuzzNoCustom(obj) // fuzz self without calling this function again
    			// length in bytes of the IP Family: IPv4: 4 bytes IPv6: 16 bytes
    			boolean := []bool{false, true}
    			is6 := boolean[c.Rand.Intn(2)]
    			ip := generateRandomIP(is6, c)
    			obj.Name = ip
    		},
    		func(obj *networking.ServiceCIDR, c fuzz.Continue) {
    			c.FuzzNoCustom(obj) // fuzz self without calling this function again
    			boolean := []bool{false, true}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. pkg/kubelet/clustertrustbundle/clustertrustbundle_manager_test.go

    	if err != nil {
    		t.Fatalf("Error while calling GetTrustAnchorsByName: %v", err)
    	}
    
    	if diff := diffBundles(gotBundle, []byte(ctb1.Spec.TrustBundle)); diff != "" {
    		t.Fatalf("Got bad bundle; diff (-got +want)\n%s", diff)
    	}
    
    	gotBundle, err = ctbManager.GetTrustAnchorsByName("ctb2", false)
    	if err != nil {
    		t.Fatalf("Error while calling GetTrustAnchorsByName: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/AbstractClassBackedManagedTypeIntegrationTest.groovy

                }
    
                apply type: RulePlugin
            '''
    
            then:
            fails 'tasks'
    
            and:
            failure.assertHasCause("Calling setters of a managed type on itself is not allowed")
        }
    
        def "calling setters of super class from non-abstract getters is not allowed"() {
            when:
            defineCallsSetterInNonAbstractGetterClass()
            buildFile << '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/webhook/error.go

    // ErrCallingWebhook is returned for transport-layer errors calling webhooks. It
    // represents a failure to talk to the webhook, not the webhook rejecting a
    // request.
    type ErrCallingWebhook struct {
    	WebhookName string
    	Reason      error
    	Status      *apierrors.StatusError
    }
    
    func (e *ErrCallingWebhook) Error() string {
    	if e.Reason != nil {
    		return fmt.Sprintf("failed calling webhook %q: %v", e.WebhookName, e.Reason)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 05 18:36:22 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testcarchive/testdata/main3.c

    		}
    	}
    
    	sigioSeen = 0;
    
    	// Tell the Go code to catch SIGIO.
    
    	if (verbose) {
    		printf("calling CatchSIGIO\n");
    	}
    
    	CatchSIGIO();
    
    	if (verbose) {
    		printf("raising SIGIO\n");
    	}
    
    	if (raise(SIGIO) < 0) {
    		die("raise");
    	}
    
    	if (verbose) {
    		printf("calling SawSIGIO\n");
    	}
    
    	if (!SawSIGIO()) {
    		fprintf(stderr, "Go handler did not see SIGIO\n");
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. src/runtime/cgo/gcc_setenv.c

    // license that can be found in the LICENSE file.
    
    //go:build unix
    
    #include "libcgo.h"
    
    #include <stdlib.h>
    
    /* Stub for calling setenv */
    void
    x_cgo_setenv(char **arg)
    {
    	_cgo_tsan_acquire();
    	setenv(arg[0], arg[1], 1);
    	_cgo_tsan_release();
    }
    
    /* Stub for calling unsetenv */
    void
    x_cgo_unsetenv(char **arg)
    {
    	_cgo_tsan_acquire();
    	unsetenv(arg[0]);
    	_cgo_tsan_release();
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 487 bytes
    - Viewed (0)
  7. cluster/kube-down.sh

    fi
    
    source "${KUBE_ROOT}/cluster/kube-util.sh"
    
    echo "Bringing down cluster using provider: $KUBERNETES_PROVIDER"
    
    echo "... calling verify-prereqs" >&2
    verify-prereqs
    echo "... calling verify-kube-binaries" >&2
    verify-kube-binaries
    echo "... calling kube-down" >&2
    kube-down
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 14 07:12:08 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  8. cluster/kube-up.sh

    else
      echo "... Starting cluster in ${ZONE} using provider ${KUBERNETES_PROVIDER}" >&2
    fi
    
    echo "... calling verify-prereqs" >&2
    verify-prereqs
    echo "... calling verify-kube-binaries" >&2
    verify-kube-binaries
    echo "... calling verify-release-tars" >&2
    verify-release-tars
    
    echo "... calling kube-up" >&2
    kube-up
    
    echo "... calling validate-cluster" >&2
    # Override errexit
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 17 15:03:34 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/file/FileTreeElement.java

        /**
         * Opens this file as an input stream. Generally, calling this method is more performant than calling {@code new
         * FileInputStream(getFile())}.
         *
         * @return The input stream. Never returns null. The caller is responsible for closing this stream.
         */
        InputStream open();
    
        /**
         * Copies the content of this file to an output stream. Generally, calling this method is more performant than
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:43:13 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. pkg/apis/apps/fuzzer/fuzzer.go

    		func(j *apps.DeploymentSpec, c fuzz.Continue) {
    			c.FuzzNoCustom(j) // fuzz self without calling this function again
    			rhl := int32(c.Rand.Int31())
    			pds := int32(c.Rand.Int31())
    			j.RevisionHistoryLimit = &rhl
    			j.ProgressDeadlineSeconds = &pds
    		},
    		func(j *apps.DeploymentStrategy, c fuzz.Continue) {
    			c.FuzzNoCustom(j) // fuzz self without calling this function again
    			// Ensure that strategyType is one of valid values.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top