Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 45 for myns (0.07 sec)

  1. src/time/zoneinfo.go

    	}
    	off := hours * secondsPerHour
    	if len(s) == 0 || s[0] != ':' {
    		if neg {
    			off = -off
    		}
    		return off, s, true
    	}
    
    	var mins int
    	mins, s, ok = tzsetNum(s[1:], 0, 59)
    	if !ok {
    		return 0, "", false
    	}
    	off += mins * secondsPerMinute
    	if len(s) == 0 || s[0] != ':' {
    		if neg {
    			off = -off
    		}
    		return off, s, true
    	}
    
    	var secs int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. src/log/slog/handler_test.go

    			replace: func(_ []string, a Attr) Attr {
    				if a.Key == TimeKey {
    					return Group(TimeKey, "mins", 3, "secs", 2)
    				}
    				if a.Key == LevelKey {
    					return Attr{}
    				}
    				return a
    			},
    			wantText: `time.mins=3 time.secs=2 msg=message`,
    			wantJSON: `{"time":{"mins":3,"secs":2},"msg":"message"}`,
    		},
    		{
    			name:     "replace empty",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 13:57:53 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  3. pilot/pkg/model/endpointshards.go

    func (e *EndpointIndex) ShardsForService(serviceName, namespace string) (*EndpointShards, bool) {
    	e.mu.RLock()
    	defer e.mu.RUnlock()
    	byNs, ok := e.shardsBySvc[serviceName]
    	if !ok {
    		return nil, false
    	}
    	shards, ok := byNs[namespace]
    	return shards, ok
    }
    
    // GetOrCreateEndpointShard returns the shards. The second return parameter will be true if this service was seen
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/prepare_quantize_helper.h

          SmallVector<double, 4> mins(1, std::numeric_limits<double>::max());
          SmallVector<double, 4> maxs(1, std::numeric_limits<double>::min());
          // Computes the effective min/max values of the attribute values.
          quant::ExtractMinMaxFromAttr(attr, /*dim_size=*/1, /*slice_size=*/1,
                                       /*symmetric=*/true, mins, maxs);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoDescriptorCreator.java

            }
    
            return pluginManager.getMojoDescriptor(
                    plugin, goal, project.getRemotePluginRepositories(), session.getRepositorySession());
        }
    
        // TODO take repo mans into account as one may be aggregating prefixes of many
        // TODO collect at the root of the repository, read the one at the root, and fetch remote if something is missing
        // or the user forces the issue
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/BuildActionsFactory.java

            //(SF) this is a workaround until this story is completed. I'm hardcoding setting the idle timeout to be max X mins.
            //this way we avoid potential runaway daemons that steal resources on linux and break builds on windows.
            //We might leave that in if we decide it's a good idea for an extra safety net.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. tools/bug-report/pkg/config/config.go

    		out += fmt.Sprintf("context: %s\n", b.Context)
    	}
    	out += fmt.Sprintf("istio-namespace: %s\n", b.IstioNamespace)
    	out += fmt.Sprintf("full-secrets: %v\n", b.FullSecrets)
    	out += fmt.Sprintf("timeout (mins): %v\n", math.Round(float64(int(b.CommandTimeout))/float64(time.Minute)))
    	out += fmt.Sprintf("include: %s\n", b.Include)
    	out += fmt.Sprintf("exclude: %s\n", b.Exclude)
    	if !b.StartTime.Equal(time.Time{}) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 12:07:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java

                            }
                        }
                    }
                }
            }
        }
    
        // org.apache.maven.plugins:maven-remote-resources-plugin:1.0:process
        // TODO take repo mans into account as one may be aggregating prefixes of many
        // TODO collect at the root of the repository, read the one at the root, and fetch remote if something is missing
        // or the user forces the issue
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  9. src/testing/fstest/testfs.go

    //
    // If TestFS finds any misbehaviors, it returns either the first error or a
    // list of errors. Use [errors.Is] or [errors.As] to inspect.
    //
    // Typical usage inside a test is:
    //
    //	if err := fstest.TestFS(myFS, "file/that/should/be/present"); err != nil {
    //		t.Fatal(err)
    //	}
    func TestFS(fsys fs.FS, expected ...string) error {
    	if err := testFS(fsys, expected...); err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  10. src/runtime/runtime1.go

    	// and panics is surprising. Be louder and abort instead.
    	if islibrary || isarchive {
    		t |= tracebackCrash
    	}
    
    	t |= traceback_env
    
    	atomic.Store(&traceback_cache, t)
    }
    
    // Poor mans 64-bit division.
    // This is a very special function, do not use it if you are not sure what you are doing.
    // int64 division is lowered into _divv() call on 386, which does not fit into nosplit functions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top