Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 156 for Calling (0.11 sec)

  1. src/runtime/traceback.go

    		// on another stack. That could confuse callers quite a bit.
    		// Instead, we require that initAt and any other function that
    		// accepts an sp for the current goroutine (typically obtained by
    		// calling getcallersp) must not run on that goroutine's stack but
    		// instead on the g0 stack.
    		throw("cannot trace user goroutine on its own stack")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    [[task_project]]
    ==== Calling `Task.getProject()` from a task action
    
    Calling link:{javadocPath}/org/gradle/api/Task.html#getProject--[Task.getProject()] from a task action at execution time is now deprecated and will be made an error in Gradle 8.0.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    [[config_cache:requirements:use_project_during_execution]]
    === Using the `Project` object
    
    A task must not use any `Project` objects at execution time.
    This includes calling `Task.getProject()` while the task is running.
    
    Some cases can be fixed in the same way as for <<configuration_cache#config_cache:requirements:disallowed_types, disallowed types>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  4. src/reflect/type.go

    //
    // Not all methods apply to all kinds of types. Restrictions,
    // if any, are noted in the documentation for each method.
    // Use the Kind method to find out the kind of type before
    // calling kind-specific methods. Calling a method
    // inappropriate to the kind of type causes a run-time panic.
    //
    // Type values are comparable, such as with the == operator,
    // so they can be used as map keys.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

        }
    
        private void warnOnDeprecatedUsage(String methodName, boolean allowDeprecated, ProperMethodUsage... properUsages) {
            if (!isProperUsage(allowDeprecated, properUsages)) {
                String msgTemplate = "Calling configuration method '%s' is deprecated for configuration '%s', which has permitted usage(s):\n" +
                    "%s\n" +
                    "This method is only meant to be called on configurations which allow the %susage(s): '%s'.";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    }
    
    // Initializes Google Test.  This must be called before calling
    // RUN_ALL_TESTS().  In particular, it parses a command line for the
    // flags that Google Test recognizes.  Whenever a Google Test flag is
    // seen, it is removed from argv, and *argc is decremented.
    //
    // No value is returned.  Instead, the Google Test flag variables are
    // updated.
    //
    // Calling the function for the second time has no user-visible effect.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    					// is actually running or not, always try killing it before
    					// restart to avoid having 2 running instances of the same container.
    					changes.ContainersToKill[containerStatus.ID] = containerToKillInfo{
    						name:      containerStatus.Name,
    						container: &pod.Spec.Containers[idx],
    						message: fmt.Sprintf("Container is in %q state, try killing it before restart",
    							containerStatus.State),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  8. src/crypto/tls/common.go

    	// Client Hello. If it returns a non-nil error, the handshake is aborted and
    	// that error results.
    	//
    	// Unlike VerifyPeerCertificate and VerifyConnection, normal certificate
    	// verification will not be performed before calling
    	// EncryptedClientHelloRejectionVerify.
    	//
    	// If EncryptedClientHelloRejectionVerify is nil and ECH is rejected, the
    	// roots in RootCAs will be used to verify the ECH providers public
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    					t.Fatalf("unexpected kmsUsed value, expected: %v, got: %v", tt.wantV2Used, kmsUsed)
    				}
    
    			}
    			if !strings.Contains(errString(err), tt.expectedErr) {
    				t.Fatalf("expecting error calling prefixTransformersAndProbes, expected: %s, got: %s", tt.expectedErr, errString(err))
    			}
    		})
    	}
    }
    
    func TestKMSMaxTimeout(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    }
    
    // Initializes Google Test.  This must be called before calling
    // RUN_ALL_TESTS().  In particular, it parses a command line for the
    // flags that Google Test recognizes.  Whenever a Google Test flag is
    // seen, it is removed from argv, and *argc is decremented.
    //
    // No value is returned.  Instead, the Google Test flag variables are
    // updated.
    //
    // Calling the function for the second time has no user-visible effect.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
Back to top