Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 46 for Invoke (0.28 sec)

  1. src/go/types/expr.go

    	switch op {
    	case token.EQL, token.NEQ, token.LSS, token.LEQ, token.GTR, token.GEQ:
    		return true
    	}
    	return false
    }
    
    // updateExprType updates the type of x to typ and invokes itself
    // recursively for the operands of x, depending on expression kind.
    // If typ is still an untyped and not the final type, updateExprType
    // only updates the recorded untyped type for x and possibly its
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/expr.go

    	switch op {
    	case syntax.Eql, syntax.Neq, syntax.Lss, syntax.Leq, syntax.Gtr, syntax.Geq:
    		return true
    	}
    	return false
    }
    
    // updateExprType updates the type of x to typ and invokes itself
    // recursively for the operands of x, depending on expression kind.
    // If typ is still an untyped and not the final type, updateExprType
    // only updates the recorded untyped type for x and possibly its
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    The second, called package list mode, occurs when go test is invoked
    with explicit package arguments (for example 'go test math', 'go
    test ./...', and even 'go test .'). In this mode, go test compiles
    and tests each of the packages listed on the command line. If a
    package test passes, go test prints only the final 'ok' summary
    line. If a package test fails, go test prints the full test output.
    If invoked with the -bench or -v flag, go test prints the full
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. src/runtime/traceback.go

    // instruction.  No additional subtraction is required or appropriate.
    //
    // On all platforms, the traceback function is invoked when a call from
    // Go to C to Go requests a stack trace. On linux/amd64, linux/ppc64le,
    // linux/arm64, and freebsd/amd64, the traceback function is also invoked
    // when a signal is received by a thread that is executing a cgo call.
    // The traceback function should not make assumptions about when it is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            assert component.getModule().isVirtualPlatform();
            virtualPlatformNeedsRefresh = true;
            resolveState.onFewerSelected(this);
        }
    
        /**
         * Invoked when this node is back to being a pending dependency.
         * There may be some incoming edges left at that point, but they must all be coming from constraints.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // Note:
      // * the number of additional invocations is not guaranteed to be exactly one.
      // * if additional invocations result in further modifications to the object, webhooks are not guaranteed to be invoked again.
      // * webhooks that use this option may be reordered to minimize the number of additional invocations.
      // * to validate an object after all mutations are guaranteed complete, use a validating admission webhook instead.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. src/crypto/tls/common.go

    	// ClientAuth is NoClientCert, this callback is not called on the server.
    	// rawCerts may be empty on the server if ClientAuth is RequestClientCert or
    	// VerifyClientCertIfGiven.
    	//
    	// This callback is not invoked on resumed connections, as certificates are
    	// not re-verified on resumption.
    	//
    	// verifiedChains and its contents should not be modified.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // Specifies the CNI provider. Can be either "default" or "multus". When set to "multus", an additional
      // NetworkAttachmentDefinition resource is deployed to the cluster to allow the istio-cni plugin to be
      // invoked in a cluster using the Multus CNI plugin.
      string provider = 22;
    
      // The number of pods that can be unavailable during a rolling update of the CNI DaemonSet (see
      // `updateStrategy.rollingUpdate.maxUnavailable` here:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "LoweredAtomicOr32Variant", argLength: 3, reg: gpxchg, resultNotInArgs: true, faultOnNilArg0: true, hasSideEffects: true},
    
    		// LoweredWB invokes runtime.gcWriteBarrier. arg0=mem, auxint=# of buffer entries needed
    		// It saves all GP registers if necessary,
    		// but clobbers R30 (LR) because it's a call.
    		// R16 and R17 may be clobbered by linker trampoline.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  10. src/time/time_test.go

    	}
    }
    
    // Issue 25686: hard crash on concurrent timer access.
    // Issue 37400: panic with "racy use of timers"
    // This test deliberately invokes a race condition.
    // We are testing that we don't crash with "fatal error: panic holding locks",
    // and that we also don't panic.
    func TestConcurrentTimerReset(t *testing.T) {
    	const goroutines = 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
Back to top