Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 415 for _this6 (0.29 sec)

  1. guava/src/com/google/common/util/concurrent/AbstractFuture.java

        if (ATOMIC_HELPER.casValue(this, null, valueToSet)) {
          complete(this, /*callInterruptTask=*/ false);
          return true;
        }
        return false;
      }
    
      /**
       * Sets the failed result of this {@code Future} unless this {@code Future} has already been
       * cancelled or set (including {@linkplain #setFuture set asynchronously}). When a call to this
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go

    	procputmsg,
    	procgetmsg syscallFunc
    )
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func pipe(p *[2]_C_int) (n int, err error) {
    	r0, _, e1 := rawSysvicall6(uintptr(unsafe.Pointer(&procpipe)), 1, uintptr(unsafe.Pointer(p)), 0, 0, 0, 0, 0)
    	n = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59.7K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

        test_case->ClearResult();
      }
    
      // Runs every test in this TestCase.
      void Run();
    
      // Runs SetUpTestCase() for this TestCase.  This wrapper is needed
      // for catching exceptions thrown from SetUpTestCase().
      void RunSetUpTestCase() { (*set_up_tc_)(); }
    
      // Runs TearDownTestCase() for this TestCase.  This wrapper is
      // needed for catching exceptions thrown from TearDownTestCase().
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                // For implicit invoke, the explicit receiver is always set in FIR and this receiver is the variable or property that has
                // the `invoke` member function. In this case, we use the `calleeExpression` in the `KtCallExpression` as the PSI
                // representation of this receiver. Caller can then use this PSI for further call resolution, which is implemented by the
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/filesystem_interface.h

    /// in addition with the data discussed in this section. Each plugin author can
    /// use a custom scheme, but it should only relate to changes in plugin code.
    /// This section only touches metadata related to the versioning of this
    /// interface that is shared by all possible plugins.
    ///
    /// The API number increases whenever we break API compatibility while still
    /// maintaining ABI compatibility. This happens only in the following cases:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/reflect/TypeToken.java

       * Returns the corresponding wrapper type if this is a primitive type; otherwise returns {@code
       * this} itself. Idempotent.
       *
       * @since 15.0
       */
      public final TypeToken<T> wrap() {
        if (isPrimitive()) {
          @SuppressWarnings("unchecked") // this is a primitive class
          Class<T> type = (Class<T>) runtimeType;
          return of(Primitives.wrap(type));
        }
        return this;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

            this is FirNestedClassifierScope -> true
            this is FirNestedClassifierScopeWithSubstitution -> originalScope.isScopeForClass()
            this is FirClassUseSiteMemberScope -> true
            else -> false
        }
    
        /**
         * Assuming that both this [FirScope] and [another] are [FirNestedClassifierScope] or [FirClassUseSiteMemberScope] and both of them
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            // letter that we will not try to resolve this name against .*
            // imports. Instead a full import is needed for these.
            // resolveAliasFromModule will do this check for us. This method
            // does also check the module contains a class in the same package
            // of this name. This check is not done for vanilla names starting
            // with a lower case letter anymore
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	Annotations map[string]string `json:"annotations,omitempty" protobuf:"bytes,12,rep,name=annotations"`
    
    	// List of objects depended by this object. If ALL objects in the list have
    	// been deleted, this object will be garbage collected. If this object is managed by a controller,
    	// then an entry in this list will point to this controller, with the controller field set to true.
    	// There cannot be more than one managing controller.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

        test_case->ClearResult();
      }
    
      // Runs every test in this TestCase.
      void Run();
    
      // Runs SetUpTestCase() for this TestCase.  This wrapper is needed
      // for catching exceptions thrown from SetUpTestCase().
      void RunSetUpTestCase() { (*set_up_tc_)(); }
    
      // Runs TearDownTestCase() for this TestCase.  This wrapper is
      // needed for catching exceptions thrown from TearDownTestCase().
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
Back to top