Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 68 for myns (0.05 sec)

  1. pkg/controller/certificates/signer/signer_test.go

    		},
    		{
    			name:              "cannot request duration less than 10 mins",
    			certTTL:           time.Hour,
    			expirationSeconds: csr.DurationToExpirationSeconds(10*time.Minute - time.Second),
    			want:              10 * time.Minute,
    		},
    		{
    			name:              "can request duration of exactly 10 mins",
    			certTTL:           time.Hour,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 02 21:12:04 UTC 2022
    - 15K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

                     element_type)) {
        std::vector<float> mins = {static_cast<float>(qtype.getMin())};
        std::vector<float> maxs = {static_cast<float>(qtype.getMax())};
        q_params = tflite::CreateQuantizationParameters(
            builder_, builder_.CreateVector<float>(mins),
            builder_.CreateVector<float>(maxs));
      }
      return tflite::CreateTensor(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top