Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,352 for notC (0.05 sec)

  1. src/cmd/compile/internal/types2/typestring.go

    			if w.qf == nil && w.pkgInfo && !isExported(f.name) {
    				// note for embedded types, type name is field name, and "string" etc are lower case hence unexported.
    				pkgAnnotate = true
    				w.pkgInfo = false // only tag once
    			}
    
    			// This doesn't do the right thing for embedded type
    			// aliases where we should print the alias name, not
    			// the aliased type (see go.dev/issue/44410).
    			if !f.embedded {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. src/syscall/syscall_darwin.go

    			break
    		}
    		if skip > 0 {
    			skip--
    			cnt++
    			continue
    		}
    		reclen := int(entry.Reclen)
    		if reclen > len(buf) {
    			// Not enough room. Return for now.
    			// The counter will let us know where we should start up again.
    			// Note: this strategy for suspending in the middle and
    			// restarting is O(n^2) in the length of the directory. Oh well.
    			break
    		}
    		// Copy entry into return buffer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. pkg/xds/server.go

    	// here. Prior to this explicit wait, we were implicitly waiting by receive() not sending to
    	// reqChannel and the connection not being enqueued for pushes to pushChannel until the
    	// initialization is complete.
    	<-con.initialized
    
    	for {
    		// Go select{} statements are not ordered; the same channel can be chosen many times.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildServiceIntegrationTest.groovy

                tasks.named("jar") { dependsOn("printValue") }
            """)
    
            when:
            configurationCacheRun()
    
            then:
            // Note that load-after-store doesn't check build fingerprint
            configurationCache.assertStateStored()
    
            when:
            configurationCacheRun()
    
            then: "Verify that fingerprint check works"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 11:47:23 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ProjectExtensions.kt

    /**
     * Executes the given configuration block against the [project extension]
     * [org.gradle.api.plugins.ExtensionAware] of the specified type.
     *
     * If no extension is found, configures a project convention if available.
     * Note, that the concept of conventions is deprecated and scheduled for
     * removal in Gradle 9.
     *
     * @param T the project extension type.
     * @param configuration the configuration block.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. cluster/log-dump/log-dump.sh

        wait
      fi
    }
    
    # Collect names of nodes which didn't run logexporter successfully.
    # This function examines NODE_NAMES but not WINDOWS_NODE_NAMES since logexporter
    # does not run on Windows nodes.
    #
    # Note: This step is O(#nodes^2) as we check if each node is present in the list of succeeded nodes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

                description,
                cls,
                explicitTestNames.get(0),
                cls.getName());
        return new AssertionError(message, e);
      }
    
      /**
       * Finds the classes not ending with a test suffix and not covered by an explicit test whose name
       * is {@code explicitTestNames}.
       */
      @VisibleForTesting
      List<Class<?>> findClassesToTest(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  8. src/cmd/internal/goobj/objfile.go

    // Note: here i is not a local symbol index, just a counter.
    func (r *Reader) RefFlags(i int) *RefFlags {
    	off := r.h.Offsets[BlkRefFlags] + uint32(i*RefFlagsSize)
    	return (*RefFlags)(unsafe.Pointer(&r.b[off]))
    }
    
    // Hash64 returns the i-th short hashed symbol's hash.
    // Note: here i is the index of short hashed symbols, not all symbols
    // (unlike other accessors).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         * </ul>
         * Note: Project properties contains properties injected from profiles, if applicable. Their precedence is
         * {@code profile > project}, hence active profile property may override project property.
         * <p>
         * The caller of this method should decide whether there is a project in scope (hence, a project instance
         * needs to be passed) or not.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  10. src/net/netip/netip.go

    	return ip.z == z0
    }
    
    // IsValid reports whether the [Addr] is an initialized address (not the zero Addr).
    //
    // Note that "0.0.0.0" and "::" are both valid values.
    func (ip Addr) IsValid() bool { return ip.z != z0 }
    
    // BitLen returns the number of bits in the IP address:
    // 128 for IPv6, 32 for IPv4, and 0 for the zero [Addr].
    //
    // Note that IPv4-mapped IPv6 addresses are considered IPv6 addresses
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
Back to top