Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 115 for appengine (0.11 sec)

  1. src/net/http/servemux121.go

    			return e.h, e.pattern
    		}
    	}
    	return nil, ""
    }
    
    // redirectToPathSlash determines if the given path needs appending "/" to it.
    // This occurs when a handler for path + "/" was already registered, but
    // not for path itself. If the path needs appending to, it creates a new
    // URL, setting the path to u.Path + "/" and returning true to indicate so.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:40:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/builder/iptables_builder_impl.go

    	idx := indexOf("-j", params)
    	// We have identified the type of command this is and logging is enabled. Appending a rule to log this chain will be hit
    	if rb.cfg.TraceLogging && idx >= 0 && command != log.UndefinedCommand {
    		match := params[:idx]
    		// 1337 group is just a random constant to be matched on the log reader side
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. buildscripts/checkdeps.sh

    		TARGET_FILE=$(env readlink $TARGET_FILE)
    		cd $(dirname $TARGET_FILE)
    		TARGET_FILE=$(basename $TARGET_FILE)
    	done
    
    	# Compute the canonicalized name by finding the physical path
    	# for the directory we're in and appending the target file.
    	PHYS_DIR=$(pwd -P)
    	RESULT=$PHYS_DIR/$TARGET_FILE
    	echo $RESULT
    }
    
    ## FIXME:
    ## In OSX, 'sort -V' option does not exist, hence
    ## we have our own version compare function.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. operator/pkg/util/progress/progress_test.go

    	buf := bytes.NewBuffer(nil)
    	testBuf := io.Writer(buf)
    	testWriter = &testBuf
    	expected := ""
    	expect := func(e string) {
    		t.Helper()
    		// In buffer mode we don't overwrite old data, so we are constantly appending to the expected
    		newExpected := expected + "\n" + e
    		if newExpected != buf.String() {
    			t.Fatalf("expected '%v', \ngot '%v'", newExpected, buf.String())
    		}
    		expected = newExpected
    	}
    
    	p := NewLog()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. src/syscall/dirent.go

    	case 8:
    		return uint64(byteorder.LeUint64(b))
    	default:
    		panic("syscall: readInt with unsupported size")
    	}
    }
    
    // ParseDirent parses up to max directory entries in buf,
    // appending the names to names. It returns the number of
    // bytes consumed from buf, the number of entries added
    // to names, and the new names slice.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 20:13:24 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. cmd/kubelet/app/plugins_providers.go

    		// TODO: fail and return here once alpha only tests can set the feature flags for a plugin correctly
    	}
    
    	// Skip appending the in-tree plugin to the list of plugins to be probed/initialized
    	// if the plugin unregister feature flag is set
    	if featureGate.Enabled(pluginInfo.pluginUnregisterFeature) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. cmd/kube-controller-manager/app/plugins_providers.go

    		klog.FlushAndExit(klog.ExitFlushTimeout, 1)
    		// TODO: fail and return here once alpha only tests can set the feature flags for a plugin correctly
    	}
    
    	// Skip appending the in-tree plugin to the list of plugins to be probed/initialized
    	// if the plugin unregister feature flag is set
    	if featureGate.Enabled(pluginInfo.pluginUnregisterFeature) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. utils/utils.go

    		frame, _ := frames.Next()
    		if (!strings.HasPrefix(frame.File, gormSourceDir) ||
    			strings.HasSuffix(frame.File, "_test.go")) && !strings.HasSuffix(frame.File, ".gen.go") {
    			return string(strconv.AppendInt(append([]byte(frame.File), ':'), int64(frame.Line), 10))
    		}
    	}
    
    	return ""
    }
    
    func IsValidDBNameChar(c rune) bool {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 22 06:43:02 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.28.md

    - cloud.google.com/go/analytics: v0.19.0
    - cloud.google.com/go/apigateway: v1.5.0
    - cloud.google.com/go/apigeeconnect: v1.5.0
    - cloud.google.com/go/apigeeregistry: v0.6.0
    - cloud.google.com/go/appengine: v1.7.1
    - cloud.google.com/go/area120: v0.7.1
    - cloud.google.com/go/artifactregistry: v1.13.0
    - cloud.google.com/go/asset: v1.13.0
    - cloud.google.com/go/assuredworkloads: v1.10.0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  10. src/slices/iter.go

    	}
    
    	return func(yield func(Slice) bool) {
    		for i := 0; i < len(s); i += n {
    			// Clamp the last chunk to the slice bound as necessary.
    			end := min(n, len(s[i:]))
    
    			// Set the capacity of each chunk so that appending to a chunk does
    			// not modify the original slice.
    			if !yield(s[i : i+end : i+end]) {
    				return
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:40:32 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top