Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 216 for yield (0.18 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

     public:
      pthread_mutex_t mutex_;  // The underlying pthread mutex.
      // has_owner_ indicates whether the owner_ field below contains a valid thread
      // ID and is therefore safe to inspect (e.g., to use in pthread_equal()). All
      // accesses to the owner_ field should be protected by a check of this field.
      // An alternative might be to memset() owner_ to all zeros, but there's no
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.31.md

    - Fix the comment for the Job's managedBy field ([#124793](https://github.com/kubernetes/kubernetes/pull/124793), [@mimowo](https://github.com/mimowo)) [SIG API Machinery and Apps]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

     public:
      pthread_mutex_t mutex_;  // The underlying pthread mutex.
      // has_owner_ indicates whether the owner_ field below contains a valid thread
      // ID and is therefore safe to inspect (e.g., to use in pthread_equal()). All
      // accesses to the owner_ field should be protected by a check of this field.
      // An alternative might be to memset() owner_ to all zeros, but there's no
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/MapMakerInternalMap.java

         * purposes, the "count" field, tracking the number of elements, serves as that volatile
         * variable ensuring visibility. This is convenient because this field needs to be read in many
         * read operations anyway:
         *
         * - All (unsynchronized) read operations must first read the "count" field, and should not
         * look at table entries if it is 0.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conversion.go

    			}
    		case k8s.QueryParamMatchRegularExpression:
    			res[string(qp.Name)] = &istio.StringMatch{
    				MatchType: &istio.StringMatch_Regex{Regex: qp.Value},
    			}
    		default:
    			// Should never happen, unless a new field is added
    			return nil, &ConfigError{Reason: InvalidConfiguration, Message: fmt.Sprintf("unknown type: %q is not supported QueryParams type", tp)}
    		}
    	}
    
    	if len(res) == 0 {
    		return nil, nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/elf.go

    	nType   uint32
    }
    
    /* For accessing the fields of r_info. */
    
    /* For constructing r_info from field values. */
    
    /*
     * Relocation types.
     */
    const (
    	ARM_MAGIC_TRAMP_NUMBER = 0x5c000003
    )
    
    /*
     * Symbol table entries.
     */
    
    /* For accessing the fields of st_info. */
    
    /* For constructing st_info from field values. */
    
    /* For accessing the fields of st_other. */
    
    /*
     * ELF header.
     */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. src/time/format.go

    //
    // The example for [Time.Format] demonstrates the working of the layout string
    // in detail and is a good reference.
    //
    // When parsing (only), the input may contain a fractional second
    // field immediately after the seconds field, even if the layout does not
    // signify its presence. In that case either a comma or a decimal point
    // followed by a maximal series of digits is parsed as a fractional second.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

         * purposes, the "count" field, tracking the number of elements, serves as that volatile
         * variable ensuring visibility. This is convenient because this field needs to be read in many
         * read operations anyway:
         *
         * - All (unsynchronized) read operations must first read the "count" field, and should not
         * look at table entries if it is 0.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  9. src/fmt/fmt_test.go

    	// see inside non-exported fields (which cannot be accessed with Interface()).
    	// Issue 8965.
    	{"%v", reflect.ValueOf(A{}).Field(0).String(), "<int Value>"}, // Equivalent to the old way.
    	{"%v", reflect.ValueOf(A{}).Field(0), "0"},                    // Sees inside the field.
    
    	// verbs apply to the extracted value too.
    	{"%s", reflect.ValueOf("hello"), "hello"},
    	{"%q", reflect.ValueOf("hello"), `"hello"`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ppc64/ssa.go

    		// LDAR or LWAR
    		p0 := s.Prog(ld)
    		p0.From.Type = obj.TYPE_MEM
    		p0.From.Reg = r0
    		p0.To.Type = obj.TYPE_REG
    		p0.To.Reg = ppc64.REGTMP
    		// If it is a Compare-and-Swap-Release operation, set the EH field with
    		// the release hint.
    		if v.AuxInt == 0 {
    			p0.AddRestSourceConst(0)
    		}
    		// CMP reg1,reg2
    		p1 := s.Prog(cmp)
    		p1.From.Type = obj.TYPE_REG
    		p1.From.Reg = r1
    		p1.To.Reg = ppc64.REGTMP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top