Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 823 for existed (0.12 sec)

  1. src/go/types/validtype.go

    //
    //   P₂
    //         nest = A[A[string]]->B[P]
    //         path = A[A[string]]->B[P]
    //
    // The type argument for P of B is the type parameter P of A (P₁).
    // It must be evaluated in the type nest that existed when B was
    // instantiated:
    //
    //   P₁
    //         nest = A[A[string]]        <== type nest at B's instantiation time
    //         path = A[A[string]]->B[P]
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/staticdata/data.go

    	// Reusing funcsymsmu to also cover this package lookup
    	// avoids a general, broader, expensive package lookup mutex.
    	funcsymsmu.Lock()
    	sf, existed := s.Pkg.LookupOK(ir.FuncSymName(s))
    	if !existed {
    		funcsyms = append(funcsyms, n)
    	}
    	funcsymsmu.Unlock()
    
    	return sf.Linksym()
    }
    
    func GlobalLinksym(n *ir.Name) *obj.LSym {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:08:50 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/plugins/gcs/expiring_lru_cache.h

        InsertLocked(key, value);
      }
    
      // Delete the entry with key `key`. Return true if the entry was found for
      // `key`, false if the entry was not found. In both cases, there is no entry
      // with key `key` existed after the call.
      bool Delete(const std::string& key) {
        absl::MutexLock lock(&mu_);
        return DeleteLocked(key);
      }
    
      /// Look up the entry with key `key` and copy it to `value` if found. Returns
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 09 19:31:22 UTC 2020
    - 6.3K bytes
    - Viewed (0)
  4. tests/migrate_test.go

    	}
    
    	// RelationModel3 should be existed
    	_, err = findColumnType(&RelationModel3{}, "id")
    	AssertEqual(t, nil, err)
    
    	// RelationModel1 should not be existed
    	_, err = findColumnType(&RelationModel1{}, "id")
    	if err == nil {
    		t.Errorf("RelationModel1 should not be migrated")
    	}
    
    	// RelationModel2 should not be existed
    	_, err = findColumnType(&RelationModel2{}, "id")
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  5. src/internal/syscall/windows/registry/key.go

    	}
    	return names, nil
    }
    
    // CreateKey creates a key named path under open key k.
    // CreateKey returns the new key and a boolean flag that reports
    // whether the key already existed.
    // The access parameter specifies the access rights for the key
    // to be created.
    func CreateKey(k Key, path string, access uint32) (newk Key, openedExisting bool, err error) {
    	var h syscall.Handle
    	var d uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/state/UpToDateIntegTest.groovy

            buildFile '''
    apply plugin: 'base'
    
    task checkCreated {
        dependsOn "createEmpty"
        def createdDir = file('build/createdDirectory')
        doLast {
            assert createdDir.exists()
            println "Directory 'build/createdDirectory' exists"
        }
    }
    
    task("createEmpty", type: CreateEmptyDirectory)
    
    public abstract class CreateEmptyDirectory extends DefaultTask {
    
        @Inject
        abstract ProjectLayout getLayout()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 13 12:00:09 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  7. maven-core/src/site/apt/configuration-management.apt

     We need to define what happens in the when things are not setup correctly
    
     o ~/.m2 directory does not exist
     o ~/.m2/maven.properties does not exist
     o if they once existed but now to do not exist
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. src/internal/trace/oldtrace.go

    		if it.preInit {
    			// The first EvGomaxprocs signals the end of trace initialization. At this point we've seen
    			// all goroutines that already existed at trace begin.
    			it.preInit = false
    			for gid := range it.createdPreInit {
    				// These are goroutines that already existed when tracing started but for which we
    				// received neither GoWaiting, GoInSyscall, or GoStart. These are goroutines that are in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/JdkFutureAdapters.java

     * consider <a href="https://github.com/lukas-krecan/future-converter">Future Converter</a>.
     *
     * @author Sven Mawson
     * @since 10.0 (replacing {@code Futures.makeListenable}, which existed in 1.0)
     */
    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public final class JdkFutureAdapters {
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 14 20:35:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/toolchain.go

    		return nil, fmt.Errorf("go language version %s is not a toolchain version", rev)
    	}
    
    	// Check that the underlying toolchain exists.
    	// We always ask about linux-amd64 because that one
    	// has always existed and is likely to always exist in the future.
    	// This avoids different behavior validating go versions on different
    	// architectures. The eventual download uses the right GOOS-GOARCH.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 13 16:44:24 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top