Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 107 for Guess (0.06 sec)

  1. migrator/migrator.go

    }
    
    // DropView drop view
    func (m Migrator) DropView(name string) error {
    	return m.DB.Exec("DROP VIEW IF EXISTS ?", clause.Table{Name: name}).Error
    }
    
    // GuessConstraintAndTable guess statement's constraint and it's table based on name
    //
    // Deprecated: use GuessConstraintInterfaceAndTable instead.
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 26 07:15:49 UTC 2024
    - 29K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/NbtAddress.java

        public <T extends Address> T unwrap ( Class<T> type ) {
            if ( type.isAssignableFrom(this.getClass()) ) {
                return (T) this;
            }
            return null;
        }
    
    
        /**
         * Guess next called name to try for session establishment. These
         * methods are used by the smb package.
         * 
         * @return guessed name
         */
        @Override
        public String firstCalledName () {
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 15.2K bytes
    - Viewed (0)
  3. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/DefaultMavenPublication.java

            if (pomArtifact == null) {
                throw new IllegalStateException("pomArtifact not set for publication");
            }
            return pomArtifact;
        }
    
        // TODO Remove this attempt to guess packaging from artifacts. Packaging should come from component, or be explicitly set.
        private String determinePackagingFromArtifacts() {
            Set<MavenArtifact> unclassifiedArtifacts = getUnclassifiedArtifactsWithExtension();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 06:46:01 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/KotlinScript.kt

         * queried.
         *
         * Unless custom implementation of resources is passed,
         * the tar tree attempts to guess the compression based on the file extension.
         *
         * You can combine this method with the [copy] method to unzip a ZIP file.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  5. src/net/lookup_windows.go

    	case <-ctx.Done():
    		// TODO(bradfitz,brainman): cancel the ongoing
    		// GetAddrInfoW? It would require conditionally using
    		// GetAddrInfoEx with lpOverlapped, which requires
    		// Windows 8 or newer. I guess we'll need oldLookupIP,
    		// newLookupIP, and newerLookUP.
    		//
    		// For now we just let it finish and write to the
    		// buffered channel.
    		return nil, newDNSError(mapErr(ctx.Err()), name, "")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/first-steps.md

    !!! info "`@decorator` Info"
        That `@something` syntax in Python is called a "decorator".
    
        You put it on top of a function. Like a pretty decorative hat (I guess that's where the term came from).
    
        A "decorator" takes the function below and does something with it.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 12K bytes
    - Viewed (1)
  7. src/cmd/doc/main.go

    		importErrStr := importErr.Error()
    		if strings.Contains(importErrStr, arg[:period]) {
    			log.Fatal(importErrStr)
    		} else {
    			log.Fatalf("no such package %s: %s", arg[:period], importErrStr)
    		}
    	}
    	// Guess it's a symbol in the current directory.
    	return importDir(wd), "", arg, false
    }
    
    // dotPaths lists all the dotted paths legal on Unix-like and
    // Windows-like file systems. We check them all, as the chance
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testplugin/plugin_test.go

    }
    
    // escape converts a string to something suitable for a shell command line.
    func escape(s string) string {
    	s = strings.Replace(s, "\\", "\\\\", -1)
    	s = strings.Replace(s, "'", "\\'", -1)
    	// Conservative guess at characters that will force quoting
    	if s == "" || strings.ContainsAny(s, "\\ ;#*&$~?!|[]()<>{}`") {
    		s = "'" + s + "'"
    	}
    	return s
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/SettingsScriptApi.kt

         * queried.
         *
         * Unless custom implementation of resources is passed,
         * the tar tree attempts to guess the compression based on the file extension.
         *
         * You can combine this method with the [copy] method to unzip a ZIP file.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  10. internal/rest/client.go

    			}
    		default:
    			// This is where we'd set it to -1 (at least
    			// if body != NoBody) to mean unknown, but
    			// that broke people during the Go 1.8 testing
    			// period. People depend on it being 0 I
    			// guess. Maybe retry later. See Issue 18117.
    		}
    		// For client requests, Request.ContentLength of 0
    		// means either actually 0, or unknown. The only way
    		// to explicitly say that the ContentLength is zero is
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top