Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for prepending (0.2 sec)

  1. src/syscall/dir_plan9.go

    func pbit64(b []byte, v uint64) []byte {
    	byteorder.LePutUint64(b, v)
    	return b[8:]
    }
    
    // pstring copies the string s to b, prepending it with a 16-bit length in little-endian order, and
    // returning the remaining slice of b..
    func pstring(b []byte, s string) []byte {
    	b = pbit16(b, uint16(len(s)))
    	n := copy(b, s)
    	return b[n:]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:32:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinCodeFragmentContextModificationListener.kt

    public fun interface KotlinCodeFragmentContextModificationListener {
        /**
         * [onModification] is invoked in a write action before or after a context change for code fragments depending on the [module].
         *
         * All code fragments depending on [module], both directly or transitively, should be considered modified when this event is received.
         *
         * @see KotlinModificationTopics
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 796 bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/SystemProperties.java

                return factory.create();
            } finally {
                restoreProperty(propertyName, originalValue);
            }
        }
    
        /**
         * Provides safe access to the system properties, preventing concurrent {@link #withSystemProperty(String, String, Factory)} calls.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/analyze.kt

    ): R {
        val sessionProvider = KaSessionProvider.getInstance(useSiteKtModule.project)
        return sessionProvider.analyze(useSiteKtModule, action)
    }
    
    /**
     * Executes the given [action] in a [KaSession] context.
     * Depending on the passed [resolutionMode], declarations inside a file copy will be treated in a specific way.
     *
     * Note that the [useSiteKtElement] must be inside a dangling file copy.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/phases/init/preflight.go

    		return nil
    	}
    
    	fmt.Println("[preflight] Pulling images required for setting up a Kubernetes cluster")
    	fmt.Println("[preflight] This might take a minute or two, depending on the speed of your internet connection")
    	fmt.Println("[preflight] You can also perform this action beforehand using 'kubeadm config images pull'")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. src/runtime/race/testdata/rangefunc_test.go

    				if !done.Load() && !yield(i, s[i]) {
    					done.Store(true)
    					c <- false
    				}
    			}
    			c <- true
    			return
    		}()
    		if !<-c {
    			return
    		}
    		<-c
    	}
    }
    
    // foo is racy, or not, depending on the value of v
    // (0-4 == racy, otherwise, not racy).
    func foo(v int) int64 {
    	var asum atomic.Int64
    	for i, x := range ofSliceIndex([]int64{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}) {
    		if i%5 == v {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. subprojects/core/src/testFixtures/groovy/org/gradle/process/ShellScript.groovy

         * The resulting list can be used as an argument for the {@link ProcessBuilder} or Groovy's {@code execute} method.
         * The first element of the list is the command interpreter (sh or cmd depending on the platform).
         * The list also contains an absolute path to the script (which may contain spaces).
         *
         * @return the list of command line elements to start this script.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. security/pkg/nodeagent/caclient/providers/mock/mockcaclient.go

    	}
    	cl.bundle = bundle
    
    	atomic.StoreUint64(&cl.SignInvokeCount, 0)
    	return &cl, nil
    }
    
    func (c *CAClient) Close() {}
    
    // CSRSign returns the certificate or errors depending on the settings.
    func (c *CAClient) CSRSign(csrPEM []byte, certValidTTLInSec int64) ([]string, error) {
    	atomic.AddUint64(&c.SignInvokeCount, 1)
    	signingCert, signingKey, certChain, rootCert := c.bundle.GetAll()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm-infrastructure/build.gradle.kts

        api(libs.testng)
        api(libs.bsh) {
            because("""We need to create a capability conflict between "org.beanshell:bsh", and "org.beanshell:beanshell" by explicitly including this lib
                version of bsh, instead of depending on the transitive version contributed by testng.  This lib contributes the "beanshell" capability,
                and the conflict resolution rules from capabilities.json ensures this is the version that is resolved.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/Supplier.java

    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public interface Supplier<T extends @Nullable Object> {
      /**
       * Retrieves an instance of the appropriate type. The returned object may or may not be a new
       * instance, depending on the implementation.
       *
       * @return an instance of the appropriate type
       */
      @ParametricNullness
      T get();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 12:15:07 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top